edgeone 1.0.16-beta.1 → 1.0.16

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
@@ -167,7 +167,7 @@ edgeone pages deploy ./build.zip -e preview -t $EDGEONE_API_TOKEN
167
167
 
168
168
  #### Obtaining an API Token
169
169
 
170
- For more information, please refer to https://edgeone.ai/document/177158578324279296'
170
+ For more information, please refer to https://edgeone.ai/document/177158578324279296
171
171
 
172
172
  To use the deploy command in CI/CD pipelines, you need to generate an API token:
173
173
 
@@ -180275,7 +180275,7 @@ var yargs_default = Yargs;
180275
180275
  // package.json
180276
180276
  var package_default = {
180277
180277
  name: "edgeone",
180278
- version: "1.0.15",
180278
+ version: "1.0.16",
180279
180279
  description: "Command-line interface for TencentCloud Pages Functions",
180280
180280
  bin: {
180281
180281
  edgeone: "./edgeone-bin/edgeone.js"
@@ -180302,7 +180302,9 @@ var package_default = {
180302
180302
  watch: "node -r esbuild-register ./scripts/bundle.ts watch",
180303
180303
  build: "npm run clean && npm run bundle && npm run copy",
180304
180304
  buildWin: "npm run clean && npm run bundle && npm run xcopy",
180305
- test: "jest --no-cache"
180305
+ test: "jest --no-cache",
180306
+ prepack: "npm run build",
180307
+ prepublishOnly: "npm run build"
180306
180308
  },
180307
180309
  dependencies: {
180308
180310
  chokidar: "^4.0.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edgeone",
3
- "version": "1.0.16-beta.1",
3
+ "version": "1.0.16",
4
4
  "description": "Command-line interface for TencentCloud Pages Functions",
5
5
  "bin": {
6
6
  "edgeone": "./edgeone-bin/edgeone.js"
@@ -27,7 +27,9 @@
27
27
  "watch": "node -r esbuild-register ./scripts/bundle.ts watch",
28
28
  "build": "npm run clean && npm run bundle && npm run copy",
29
29
  "buildWin": "npm run clean && npm run bundle && npm run xcopy",
30
- "test": "jest --no-cache"
30
+ "test": "jest --no-cache",
31
+ "prepack": "npm run build",
32
+ "prepublishOnly": "npm run build"
31
33
  },
32
34
  "dependencies": {
33
35
  "chokidar": "^4.0.1",