This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
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.
- Loading branch information
1 parent
cb2e4b2
commit b1766aa
Showing
3 changed files
with
43 additions
and
16 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
scripts: | ||
lint: | ||
script: eslint src/**/*.js tests/**/*.js | ||
description: Checks for any formatting errors | ||
test: | ||
default: | ||
script: karma start --single-run | ||
description: Executes the Test Suite | ||
tdd: | ||
script: karma start | ||
description: Watches for changes and executes the Test Suite accordingly | ||
sauce: | ||
script: karma start karma.ci.conf.js | ||
description: Executes the Test Suite on Sauce Labs | ||
serve: | ||
default: | ||
script: webpack-dev-server --config webpack.server.config.js | ||
description: Starts a server at http://localhost:8080 | ||
build: | ||
default: | ||
script: nps build.dev && nps build.prod | ||
description: Builds both a minified and unminified artifact | ||
dev: | ||
script: webpack --progress --colors -d | ||
description: Builds an unminified artifact | ||
prod: | ||
script: webpack --progress --colors -p | ||
description: Builds a minified artifact | ||
report-coverage: | ||
script: coveralls < coverage/lcov.info | ||
description: Reports code coverage information to Coveralls | ||
semantic-release: | ||
script: semantic-release | ||
description: Publishes the artifact to NPM and GitHub |
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