@typespec/http-server-js 0.58.0-alpha.12-dev.10 → 0.58.0-alpha.12-dev.11

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 (1) hide show
  1. package/package.json +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http-server-js",
3
- "version": "0.58.0-alpha.12-dev.10",
3
+ "version": "0.58.0-alpha.12-dev.11",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec HTTP server code generator for JavaScript",
6
6
  "homepage": "https://github.com/microsoft/typespec",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "scripts": {
72
72
  "clean": "rimraf ./dist ./temp",
73
- "build": "npm run build:helpers && npm run build:src",
73
+ "build": "pnpm build:helpers && pnpm build:src",
74
74
  "build:src": "tsc -p ./tsconfig.json",
75
75
  "build:helpers": "tsx ./build-helpers.ts",
76
76
  "watch": "tsc -p . --watch",
@@ -81,7 +81,7 @@
81
81
  "lint": "eslint . --max-warnings=0",
82
82
  "lint:fix": "eslint . --fix",
83
83
  "regen-docs": "tspd doc . --enable-experimental --output-dir ../../website/src/content/docs/docs/emitters/servers/http-server-js/reference --skip-js",
84
- "test:e2e": "npm run emit:e2e && npm run run:e2e",
84
+ "test:e2e": "pnpm emit:e2e && pnpm run:e2e",
85
85
  "emit:e2e": "node eng/scripts/emit-e2e.js",
86
86
  "run:e2e": "vitest run --config ./vitest.config.e2e.js"
87
87
  }