forked from gwatts/jquery.sparkline
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gwatts#1 from imsky/update-build
update build process
- Loading branch information
Showing
10 changed files
with
3,174 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,63 @@ | ||
# Ignore vim temp files | ||
.*.sw[a-z] | ||
*.un~ | ||
Session.vim | ||
# Gitignore from Quickstart | ||
# qkst.io/dotfiles/gitignore | ||
|
||
# JavaScript | ||
node_modules/ | ||
bower_components/ | ||
npm-debug.log | ||
|
||
# Python | ||
*.py[cod] | ||
venv | ||
__pycache__ | ||
|
||
# Java | ||
*.class | ||
*.[jwe]ar | ||
|
||
# C, C++ | ||
*.o | ||
*.so | ||
*.la | ||
*.a | ||
*.dll | ||
|
||
# Executables | ||
*.out | ||
*.exe | ||
*.app | ||
|
||
# Logs | ||
*.log | ||
logs | ||
|
||
# Archives | ||
*.[7gx]z | ||
*.[tr]ar | ||
*.zip | ||
*.dmg | ||
*.deb | ||
*.rpm | ||
*.xpi | ||
*.msi | ||
|
||
# Linux | ||
*~ | ||
.Trash-* | ||
|
||
# OS X | ||
._* | ||
.fuse_* | ||
.Spotlight-* | ||
.DS_Store | ||
|
||
# Windows | ||
*.tmp | ||
*.bak | ||
*.lnk | ||
Thumbs.db | ||
|
||
# Other VCS | ||
.hg | ||
.bzr | ||
.svn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var shell = require('shelljs'); | ||
|
||
var package = require('./package'); | ||
|
||
var files = ['header.js', 'defaults.js', 'utils.js', 'simpledraw.js', 'rangemap.js', 'interact.js', 'base.js', 'chart-line.js', 'chart-bar.js', 'chart-tristate.js', 'chart-discrete.js', 'chart-bullet.js', 'chart-pie.js', 'chart-box.js', 'vcanvas-base.js', 'vcanvas-canvas.js', 'vcanvas-vml.js', 'footer.js']; | ||
|
||
shell.cd('src'); | ||
|
||
var src = shell.cat(files).replace(/@VERSION@/mg, package.version); | ||
|
||
shell.cd('..'); | ||
|
||
src.to('jquery.sparkline.js'); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.