Skip to content

Commit

Permalink
Merge pull request #26 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 committed Oct 4, 2017
2 parents 6d105f6 + 354b894 commit 9cd8db9
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 @@ -8,14 +8,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 run build && 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",
"document": "bit-docs",
"build": "node build.js"
"build": "node build.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -45,6 +46,7 @@
},
"devDependencies": {
"bit-docs": "0.0.7",
"detect-cyclic-packages": "^1.1.0",
"jshint": "^2.9.5",
"qunitjs": "^2.4.0",
"steal": "^1.5.6",
Expand Down

0 comments on commit 9cd8db9

Please sign in to comment.