pepr 0.1.24 → 0.1.25

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 -1
package/dist/pepr-cli.js CHANGED
@@ -18,7 +18,7 @@ var uuid = require('uuid');
18
18
  var commander = require('commander');
19
19
  var chokidar = require('chokidar');
20
20
 
21
- var version = "0.1.24";
21
+ var version = "0.1.25";
22
22
 
23
23
  // SPDX-License-Identifier: Apache-2.0
24
24
  // SPDX-FileCopyrightText: 2023-Present The Pepr Authors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pepr",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "Kubernetes application engine",
5
5
  "author": "Defense Unicorns",
6
6
  "homepage": "https://github.com/defenseunicorns/pepr",
@@ -22,6 +22,7 @@
22
22
  }
23
23
  },
24
24
  "scripts": {
25
+ "preversion": "npm run prepublishOnly",
25
26
  "build": "rollup -c",
26
27
  "test": "ava",
27
28
  "lint": "npx eslint src",