Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

landscaper: Add a cycle detection script to test process #357

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
},
"devDependencies": {
"can-fixture": "^1.1.0",
"detect-cyclic-packages": "^1.1.0",
"jquery": "2.x - 3.x",
"jshint": "^2.9.4",
"steal": "^1.0.1",
Expand All @@ -47,15 +48,16 @@
},
"scripts": {
"jshint": "jshint --config .jshintrc",
"test": "npm run jshint && testee --browsers firefox test/test.html",
"test": "npm run detect-cycle && npm run jshint && testee --browsers firefox test/test.html",
"preversion": "npm test && npm run build",
"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",
"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"
"build": "node build.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"keywords": [
"CanJS"
Expand Down