We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9198af9 commit 13690c2Copy full SHA for 13690c2
.gitignore
@@ -1,2 +1,4 @@
1
node_modules/
2
.DS_Store
3
+myangular.js
4
+myangular.min.js
package.json
@@ -11,14 +11,17 @@
11
"karma-jshint-preprocessor": "0.0.6",
12
"karma-phantomjs-launcher": "^0.2.1",
13
"phantomjs": "^1.9.18",
14
- "sinon": "^1.17.2"
+ "sinon": "^1.17.2",
15
+ "uglifyjs": "^2.4.10"
16
},
17
"dependencies": {
18
"jquery": "^2.1.4",
19
"lodash": "^3.10.1"
20
21
"scripts": {
22
"lint": "jshint src test",
- "test": "karma start"
23
+ "test": "karma start",
24
+ "build": "browserify src/bootstrap.js > myangular.js",
25
+ "build:minified": "browserify src/bootstrap.js | uglifyjs -mc > myangular.min.js"
26
}
27
0 commit comments