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 c16b36f commit 1f4cae4Copy full SHA for 1f4cae4
.gitignore
@@ -1,2 +1,4 @@
1
node_modules/
2
.DS_Store
3
+myangular.js
4
+myangular.min.js
package.json
@@ -12,14 +12,17 @@
12
"karma-phantomjs-launcher": "^1.0.0",
13
"phantomjs-prebuilt": "^2.1.7",
14
"sinon": "^1.17.2",
15
- "watchify": "^3.7.0"
+ "watchify": "^3.7.0",
16
+ "uglifyjs": "^2.4.10"
17
},
18
"dependencies": {
19
"jquery": "^2.1.4",
20
"lodash": "^4.11.1"
21
22
"scripts": {
23
"lint": "jshint src test",
- "test": "karma start"
24
+ "test": "karma start",
25
+ "build": "browserify src/bootstrap.js > myangular.js",
26
+ "build:minified": "browserify src/bootstrap.js | uglifyjs -mc > myangular.min.js"
27
}
28
0 commit comments