@kong/spec-renderer 1.113.5-pr.979.db449ff.0 → 1.113.5

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/dist/cli/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/spec-renderer",
3
- "version": "1.113.5-pr.979.db449ff.0",
3
+ "version": "1.113.5",
4
4
  "description": "Kong's open-source spec renderer",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -32,6 +32,30 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
+ "scripts": {
36
+ "dev": "cross-env USE_SANDBOX=true vite",
37
+ "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases && pnpm run build:cli",
38
+ "build:package": "vite build -m production",
39
+ "build:webcomponent": "cross-env VITE_AS_WEB_COMPONENT='true' vite build -m production",
40
+ "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
41
+ "build:aliases": "tsc-alias -p './tsconfig.build.json'",
42
+ "build:cli": "tsc -p './tsconfig.cli.build.json' && node ./scripts/build-cli-assets.js && node ./scripts/generate-kongctl-manifest.mjs",
43
+ "generate:kongctl-manifest": "pnpm run build:cli",
44
+ "build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
45
+ "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
46
+ "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
47
+ "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit && pnpm run typecheck:cli && pnpm run typecheck:scripts",
48
+ "typecheck:cli": "tsc -p './tsconfig.cli.json' --noEmit",
49
+ "typecheck:scripts": "tsc -p './tsconfig.scripts.json' --noEmit",
50
+ "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
51
+ "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
52
+ "lint": "eslint",
53
+ "lint:fix": "eslint --fix",
54
+ "test": "cross-env FORCE_COLOR=1 vitest run",
55
+ "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
56
+ "semantic-release": "semantic-release",
57
+ "commit": "cz"
58
+ },
35
59
  "peerDependencies": {
36
60
  "vue": ">= 3.3.13 < 4"
37
61
  },
@@ -203,28 +227,5 @@
203
227
  "jiraAppend": "]"
204
228
  }
205
229
  },
206
- "scripts": {
207
- "dev": "cross-env USE_SANDBOX=true vite",
208
- "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases && pnpm run build:cli",
209
- "build:package": "vite build -m production",
210
- "build:webcomponent": "cross-env VITE_AS_WEB_COMPONENT='true' vite build -m production",
211
- "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
212
- "build:aliases": "tsc-alias -p './tsconfig.build.json'",
213
- "build:cli": "tsc -p './tsconfig.cli.build.json' && node ./scripts/build-cli-assets.js && node ./scripts/generate-kongctl-manifest.mjs",
214
- "generate:kongctl-manifest": "pnpm run build:cli",
215
- "build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
216
- "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
217
- "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
218
- "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit && pnpm run typecheck:cli && pnpm run typecheck:scripts",
219
- "typecheck:cli": "tsc -p './tsconfig.cli.json' --noEmit",
220
- "typecheck:scripts": "tsc -p './tsconfig.scripts.json' --noEmit",
221
- "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
222
- "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
223
- "lint": "eslint",
224
- "lint:fix": "eslint --fix",
225
- "test": "cross-env FORCE_COLOR=1 vitest run",
226
- "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
227
- "semantic-release": "semantic-release",
228
- "commit": "cz"
229
- }
230
- }
230
+ "packageManager": "pnpm@11.21.0"
231
+ }