Comparing version 0.0.95 to 0.0.96
{ | ||
"name": "traceur", | ||
"version": "0.0.95", | ||
"version": "0.0.96", | ||
"description": "ES6 to ES5 compiler", | ||
@@ -33,3 +33,26 @@ "keywords": [ | ||
"test": "make test", | ||
"start": "make && node ./demo/expressServer.js" | ||
"start": "make && node ./demo/expressServer.js", | ||
"precheckout-upstream": "git fetch upstream && git branch -D upstream_master || true", | ||
"checkout-upstream": "git checkout -b upstream_master upstream/master", | ||
"rebuild": "make clean && make test", | ||
"prejust-publish": "npm run checkout-upstream && npm run rebuild", | ||
"just-publish": "npm publish # workaround https://github.com/npm/npm/issues/10074 ", | ||
"postjust-publish": "npm run push-published && npm run push-gh-pages", | ||
"/** Update Version Number **/": "After publishing version N, update the version number and commit the result", | ||
"store-semver": "node build/printSemver.js > build/npm-version-number", | ||
"update-semver": "npm run store-semver && git diff --quiet -- package.json && node build/incrementSemver.js", | ||
"precommit-published": "npm run update-semver && npm run rebuild", | ||
"commit-published": "cat build/npm-version-number | xargs -I VERSION git commit -a -m \"VERSION\"", | ||
"tag-published": "cat build/npm-version-number | xargs -I VERSION git tag -a VERSION -m \"Tagged version VERSION \"", | ||
"pre-push-published": "npm run commit-published && npm run tag-published", | ||
"push-published": "git push --tags upstream upstream_master:master && git push upstream upstream_master:master # Push source for version N+1", | ||
"postpush-published": "git checkout master && git branch -D upstream_master", | ||
"/** Update gh-pages branch **/": "Ater publishing version N, update the github docs and REPL", | ||
"precheckout-ghpages": "git branch -D upstream_gh_pages || true", | ||
"checkout-ghpages": "git checkout -b upstream_gh_pages upstream/master", | ||
"precommit-gh-pages": "npm run checkout-ghpages && npm run rebuild && cp gh-pages.gitignore .gitignore # tell git to commit built files.", | ||
"commit-gh-pages": "git add -- src/ bin/ && ./traceur -v | xargs -I VERSION git commit -a -m \"Commit binaries for VERSION\"", | ||
"prepush-gh-pages": "npm run commit-ghpages", | ||
"push-gh-pages": "git push -f upstream upstream_gh_pages:gh-pages", | ||
"postpush-gh-pages": "git checkout master && git branch -D upstream_gh_pages" | ||
}, | ||
@@ -61,3 +84,3 @@ "homepage": "https://github.com/google/traceur-compiler", | ||
"requirejs": "2.x", | ||
"traceur": "0.0.94", | ||
"traceur": "0.0.95", | ||
"promises-aplus-tests": "2.x", | ||
@@ -64,0 +87,0 @@ "webcomponents.js": "^0.5.4-1" |
@@ -145,3 +145,3 @@ // Copyright 2013 Traceur Authors. | ||
} else { | ||
console.error(err); | ||
console.error(err.stack || err); | ||
} | ||
@@ -148,0 +148,0 @@ process.exit(1); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1525895
37951