Skip to content

Commit 0471461

Browse files
author
Nikos M
committed
buildtools update, custom dependencies format change
1 parent c3f0b2b commit 0471461

2 files changed

Lines changed: 8 additions & 10 deletions

File tree

dependencies

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
# A '#' represents a comment and everything after it is skipped
99
# Lines starting with # or blank lines are skipped
10-
# Lines starting with @ are blocks/directives and describe how the build is going to be processed
1110
# One line for each setting, no multiple settings on same line, line indentation does not matter
1211
# Blocks with =[] define LISTS (arrays)
1312
# Blocks with ={} define MAPS (hashmaps)
@@ -16,7 +15,7 @@
1615
# A key and/or value can be quoted (with ", ' or `, quotes) or unquoted
1716
# Lines with one or multiple '@'s define the end of that many previous blocks
1817

19-
@SRC =[]
18+
SRC =[]
2019

2120
!tpl:umd-header-no-worker.tpl.js # include a umd-header template
2221

@@ -79,10 +78,10 @@
7978
@ # end block
8079

8180
# extract header from this file
82-
@HEADER =
81+
HEADER =
8382
./src/MOD3.js
8483

85-
@REPLACE =[{}]
84+
REPLACE =[{}]
8685

8786
"@@VERSION@@" = "0.3.2"
8887

@@ -95,15 +94,15 @@
9594
@ # end block
9695

9796
# extract documentation
98-
@DOC ={}
97+
DOC ={}
9998
"STARTDOC" = "/**[DOC_MD]"
10099
"ENDDOC" = "[/DOC_MD]**/"
101100
"TRIMX" = "\\s*\\*\\s?"
102101
"OUTPUT" = ".\api-reference.md"
103102
@ # end block
104103

105104
# Minify the Package (map of lists)
106-
@MINIFY ={}
105+
MINIFY ={}
107106

108107
# Options for Node UglifyJS Compiler (if used, default), (mangle and compress)
109108
"UGLIFY" =[]
@@ -122,5 +121,5 @@
122121

123122
@ # end block
124123

125-
@OUT =
124+
OUT =
126125
./build/mod3.packaged.js

dependencies-bundle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
# A '#' represents a comment and everything after it is skipped
99
# Lines starting with # or blank lines are skipped
10-
# Lines starting with @ are blocks/directives and describe how the build is going to be processed
1110
# One line for each setting, no multiple settings on same line, line indentation does not matter
1211
# Blocks with =[] define LISTS (arrays)
1312
# Blocks with ={} define MAPS (hashmaps)
@@ -16,7 +15,7 @@
1615
# A key and/or value can be quoted (with ", ' or `, quotes) or unquoted
1716
# Lines with one or multiple '@'s define the end of that many previous blocks
1817

19-
@BUNDLE =[]
18+
BUNDLE =[]
2019

2120
# bundle-in external dependencies
2221
./build/classy.js
@@ -25,5 +24,5 @@
2524
@ # end block
2625

2726

28-
@OUT =
27+
OUT =
2928
./build/mod3.min.js

0 commit comments

Comments
 (0)