Skip to content

Commit

Permalink
Merge pull request #9 from canjs/landscaper/define-cycles-github
Browse files Browse the repository at this point in the history
landscaper: Add a cycle detection script to test process
  • Loading branch information
bmomberger-bitovi authored Oct 4, 2017
2 parents 6efc545 + 7153a13 commit e2ad59c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint *.js --config",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js",
"develop": "done-serve --static --develop --port 8080"
"develop": "done-serve --static --develop --port 8080",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-stream",
"keywords": [
Expand All @@ -44,6 +45,7 @@
},
"devDependencies": {
"bit-docs": "0.0.7",
"detect-cyclic-packages": "^1.1.0",
"done-serve": "^1.2.4",
"donejs-cli": "^1.0.2",
"generator-donejs": "^0.9.0",
Expand Down

0 comments on commit e2ad59c

Please sign in to comment.