weifuwu 0.19.1 → 0.19.2

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 (3) hide show
  1. package/cli.ts +1 -1
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/cli.ts CHANGED
@@ -58,7 +58,7 @@ async function cmdInit(name: string) {
58
58
  name,
59
59
  type: 'module',
60
60
  scripts: {
61
- dev: 'node --watch index.ts',
61
+ dev: 'node index.ts',
62
62
  start: 'NODE_ENV=production node index.ts',
63
63
  },
64
64
  dependencies: {
package/dist/cli.js CHANGED
@@ -38,7 +38,7 @@ async function cmdInit(name) {
38
38
  name,
39
39
  type: "module",
40
40
  scripts: {
41
- dev: "node --watch index.ts",
41
+ dev: "node index.ts",
42
42
  start: "NODE_ENV=production node index.ts"
43
43
  },
44
44
  dependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weifuwu",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "description": "Web-standard HTTP framework for Node.js — (req, ctx) => Response",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",