Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move from bower to npm #11073

Merged
merged 1 commit into from Mar 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: move from bower to npm
  • Loading branch information
DanielRuf committed Mar 18, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit e7752a4f3f3bcde880f1f2a96054f73452b1e460
4 changes: 0 additions & 4 deletions .bowerrc

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ node_js:
- "lts/carbon"
- "stable"
install:
- npm install -g bower browserstack-runner
- npm install -g browserstack-runner
- npm install
script: npm run test:ci
notifications:
6 changes: 1 addition & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -26,9 +26,5 @@
".versions",
".babelrc",
"yarn.lock"
],
"dependencies": {
"jquery": ">= 3.0.0",
"what-input": "~4.1.3"
}
]
}
10 changes: 5 additions & 5 deletions docs/assets/img/gulpfile.js
Original file line number Diff line number Diff line change
@@ -18,14 +18,14 @@ var paths = {
'src/downloads/**/*.*'
],
sass: [
'bower_components/foundation-sites/scss'
'node_modules/foundation-sites/scss'
],
javascript: [
'node_modules/jquery/dist/jquery.js',
'bower_components/foundation-sites/dist/foundation.js',
'bower_components/what-input/what-input.js',
'node_modules/foundation-sites/dist/foundation.js',
'node_modules/what-input/what-input.js',
'src/assets/js/**/*.js',
'bower_components/lodash/lodash.js',
'node_modules/lodash/lodash.js',
'src/assets/js/app.js'
]
};
@@ -161,7 +161,7 @@ gulp.task('default', ['build', 'server'], function() {
gulp.watch(['./src/{layouts,partials}/**/*.html'], ['pages:reset']);
gulp.watch(['./src/assets/scss/**/*.scss'], ['sass']);
gulp.watch(['./src/assets/js/**/*.js'], ['javascript']);
gulp.watch(['bower_components/foundation-sites/dist/foundation.js'], ['javascript']);
gulp.watch(['node_modules/foundation-sites/dist/foundation.js'], ['javascript']);
gulp.watch(['./src/assets/img/**/*'], ['images']);
gulp.watch(['./src/templates/**/*'], ['jst']);
});