pepr 0.0.7 → 0.0.8

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.
Files changed (2) hide show
  1. package/dist/pepr-cli.js +1 -1
  2. package/package.json +2 -2
package/dist/pepr-cli.js CHANGED
@@ -17,7 +17,7 @@ var child_process = require('child_process');
17
17
  var chokidar = require('chokidar');
18
18
  var util = require('util');
19
19
 
20
- var version = "0.0.6";
20
+ var version = "0.0.8";
21
21
 
22
22
  const banner = `                                                                                                                                           
23
23
                                                                                                                                             
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pepr",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Kubernetes application engine",
5
5
  "author": "Defense Unicorns",
6
6
  "homepage": "https://github.com/defenseunicorns/pepr",
@@ -19,7 +19,7 @@
19
19
  "lint:fix": "npm run lint -- --fix",
20
20
  "prettier": "npx prettier src --check",
21
21
  "prettier:fix": "npm run prettier -- --write",
22
- "pre:publish": "npm run lint && npm run prettier && npm run test && npm run build"
22
+ "prepublishOnly": "npm run lint && npm run prettier && npm run test && npm run build"
23
23
  },
24
24
  "dependencies": {
25
25
  "@kubernetes/client-node": "^0.18.1",