Skip to content

Commit da7b8c3

Browse files
committed
fix(Add missing npm modules): Fix missing modules and incorrect paths that reuslted from dropping bo
1 parent 236fadc commit da7b8c3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"moment": "^2.x"
2020
},
2121
"devDependencies": {
22+
"angular-mocks": "^1.x",
2223
"bower": "latest",
2324
"cz-conventional-changelog": "^1.1.5",
2425
"grunt": "^0.4.4",
@@ -27,6 +28,7 @@
2728
"gulp-jscs": "^3.0.2",
2829
"gulp-jshint": "^2.0.0",
2930
"jasmine-core": "^2.4.1",
31+
"jquery": "^2.2.0",
3032
"jshint": "^2.9.1",
3133
"jshint-stylish": "^2.1.0",
3234
"karma": "^0.13.19",
@@ -41,9 +43,9 @@
4143
"phantomjs": "^1.9.19",
4244
"plato": "^1.5.0",
4345
"run-browser": "^2.0.2",
46+
"semantic-release": "^4.3.5",
4447
"standard": "^5.4.1",
45-
"tape": "^4.4.0",
46-
"semantic-release": "^4.3.5"
48+
"tape": "^4.4.0"
4749
},
4850
"scripts": {
4951
"test": "npm run test-browserify && gulp",

paths.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* jshint node:true */
22

33
var bower = [
4-
'bower_components/jquery/dist/jquery.js',
5-
'bower_components/moment/moment.js',
6-
'bower_components/angular/angular.js',
7-
'bower_components/angular-mocks/angular-mocks.js'
4+
'node_modules/jquery/dist/jquery.js',
5+
'node_modules/moment/moment.js',
6+
'node_modules/angular/angular.js',
7+
'node_modules/angular-mocks/angular-mocks.js'
88
];
99
var bumpFiles = ['package.json', 'bower.json', 'README.md', 'src/js/*.js'];
1010
var miscFiles = ['GruntFile.js', 'gulpfile.js', 'karma.conf.js', 'paths.js'];

0 commit comments

Comments
 (0)