-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Meta: package.json updates for ES2018
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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,10 +4,10 @@ | |
"version": "1.0.0", | ||
"description": "The ECMAScript specification", | ||
"scripts": { | ||
"build-es2017": "git remote remove origin && git remote add origin \"[email protected]:$TRAVIS_REPO_SLUG.git\" && git fetch --quiet origin && git checkout --quiet es2017 && mkdir \"out/2017\" && cp -R img \"out/2017\" && ecmarkup --verbose spec.html out/2017/index.html && git checkout --quiet test-travis", | ||
"build-es2018": "git remote remove origin && git remote add origin \"[email protected]:$TRAVIS_REPO_SLUG.git\" && git fetch --quiet origin && git checkout --quiet es2018 && mkdir \"out/2018\" && cp -R img \"out/2018\" && ecmarkup --verbose spec.html out/2018/index.html && git checkout --quiet test-travis", | ||
"build-master": "mkdir out && cp -R img out && ecmarkup --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js", | ||
"build": "npm run clean && npm run build-master", | ||
"build-travis": "npm run clean && npm run build-master && npm run build-es2017", | ||
"build-travis": "npm run clean && npm run build-master && npm run build-es2018", | ||
"clean": "rm -rf out", | ||
"test": "exit 0", | ||
"watch": "npm run clean && mkdir out && cp -R img out && ecmarkup --watch --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js" | ||
|