forked from bigcommerce/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STRF-4965: Minor modifications to build
* Move stencil-cli and grunt-cli to devDependencies * Use npx to run tests using local instead of global packages
- Loading branch information
Showing
3 changed files
with
9 additions
and
5 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 |
---|---|---|
|
@@ -4,6 +4,8 @@ node_modules/ | |
assets/css-artifacts | ||
assets/js/bundle.js | ||
assets/dist | ||
vendor/bundle | ||
.bundle | ||
*.js.map | ||
*.zip | ||
.idea/ |
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,13 +1,12 @@ | ||
language: node_js | ||
node_js: | ||
- 6 | ||
- 8 | ||
sudo: required | ||
dist: trusty | ||
install: | ||
- bundle install | ||
- npm install -g grunt-cli | ||
- npm install -g bigcommerce/stencil-cli | ||
- bundle install --path vendor/bundle | ||
- npm install | ||
script: | ||
- grunt check | ||
- stencil bundle | ||
- npx grunt check | ||
- npx stencil bundle |
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