@heroku/skynet 1.6.12 → 1.6.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -105,7 +105,8 @@ $ npm test
105
105
  $ npm run release
106
106
  ```
107
107
 
108
- * Verify that new package version is created on [npm website](https://www.npmjs.com/package/@heroku/skynet).
108
+ * Command 'npm run release' will change the version number in package.json file and commit. but the pull request will fail due to the enabled git pull process. A follow-up manual pull request is needed to check in the new version number in Git repository.
109
+ * Verify that new package version is created on [npm website](https://www.npmjs.com/package/@heroku/skynet), or directly run command "npm view @heroku/skynet"
109
110
  * Note: You will get an error at the end of `npm run release`. Np attempts to commit to master branch the updated package version in the package.json. But the commit will fail because our master branch is protected. You can ignore the error message.
110
111
  * Submit a new PR to update the version in `package.json` and `package-lock.json`. Here is one [PR example](https://github.com/heroku/heroku-skynet-cli/pull/74).
111
112
  * Test the newly released @heroku/skynet package
@@ -26,8 +26,8 @@ module.exports = {
26
26
  $ heroku skynet:unsuspend:app -a test-app -n "helpful unsuspend message" -c "ddos"`,
27
27
  flags: [
28
28
  { name: 'app', char: 'a', description: 'app to unsuspend', hasValue: true, required: true },
29
- { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: false },
30
- { name: 'notes', char: 'n', description: 'unsuspend notes', hasValue: true, required: false }
29
+ { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: true },
30
+ { name: 'notes', char: 'n', description: 'unsuspend notes', hasValue: true, required: true }
31
31
  ],
32
32
  run: command(run)
33
33
  }
@@ -26,8 +26,8 @@ module.exports = {
26
26
  $ heroku skynet:unsuspend:user -u foo@bar.com -n "helpful unsuspend message" -c "ddos"`,
27
27
  flags: [
28
28
  { name: 'user', char: 'u', description: 'user to unsuspend', hasValue: true },
29
- { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: false },
30
- { name: 'notes', char: 'n', description: 'unsuspend notes', hasValue: true, required: false }
29
+ { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: true },
30
+ { name: 'notes', char: 'n', description: 'unsuspend notes', hasValue: true, required: true }
31
31
  ],
32
32
  run: command(run)
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroku/skynet",
3
- "version": "1.6.12",
3
+ "version": "1.6.13",
4
4
  "description": "use Skynet from Heroku CLI",
5
5
  "main": "index.js",
6
6
  "author": "Bob Argenbright @byt3smith",