Skip to content

Commit

Permalink
buildtools update, custom dependencies format change
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikos M committed Feb 6, 2014
1 parent c3f0b2b commit 0471461
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
13 changes: 6 additions & 7 deletions dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

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

@SRC =[]
SRC =[]

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

Expand Down Expand Up @@ -79,10 +78,10 @@
@ # end block

# extract header from this file
@HEADER =
HEADER =
./src/MOD3.js

@REPLACE =[{}]
REPLACE =[{}]

"@@VERSION@@" = "0.3.2"

Expand All @@ -95,15 +94,15 @@
@ # end block

# extract documentation
@DOC ={}
DOC ={}
"STARTDOC" = "/**[DOC_MD]"
"ENDDOC" = "[/DOC_MD]**/"
"TRIMX" = "\\s*\\*\\s?"
"OUTPUT" = ".\api-reference.md"
@ # end block

# Minify the Package (map of lists)
@MINIFY ={}
MINIFY ={}

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

@ # end block

@OUT =
OUT =
./build/mod3.packaged.js
5 changes: 2 additions & 3 deletions dependencies-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

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

@BUNDLE =[]
BUNDLE =[]

# bundle-in external dependencies
./build/classy.js
Expand All @@ -25,5 +24,5 @@
@ # end block


@OUT =
OUT =
./build/mod3.min.js

0 comments on commit 0471461

Please sign in to comment.