@modern-js/create-request 1.21.2 → 2.0.0-beta.0

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 +6 -29
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.21.2",
14
+ "version": "2.0.0-beta.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -63,14 +63,14 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "@babel/runtime": "^7.18.0",
66
- "@modern-js/utils": "1.21.2",
66
+ "@modern-js/utils": "2.0.0-beta.0",
67
67
  "node-fetch": "^2.6.1",
68
68
  "path-to-regexp": "^6.2.0",
69
69
  "query-string": "^7.1.1"
70
70
  },
71
71
  "devDependencies": {
72
- "@scripts/build": "1.21.2",
73
- "@scripts/jest-config": "1.21.2",
72
+ "@scripts/build": "2.0.0-beta.0",
73
+ "@scripts/jest-config": "2.0.0-beta.0",
74
74
  "@types/jest": "^27",
75
75
  "@types/node": "^14",
76
76
  "@types/node-fetch": "^2.6.1",
@@ -84,32 +84,9 @@
84
84
  "registry": "https://registry.npmjs.org/",
85
85
  "access": "public"
86
86
  },
87
- "wireit": {
88
- "build": {
89
- "command": "modern build",
90
- "files": [
91
- "src/**/*",
92
- "tsconfig.json",
93
- "package.json"
94
- ],
95
- "output": [
96
- "dist/**/*"
97
- ]
98
- },
99
- "test": {
100
- "command": "jest --passWithNoTests",
101
- "files": [
102
- "src/**/*",
103
- "tsconfig.json",
104
- "package.json",
105
- "tests/**/*"
106
- ],
107
- "output": []
108
- }
109
- },
110
87
  "scripts": {
111
88
  "new": "modern new",
112
- "build": "wireit",
113
- "test": "wireit"
89
+ "build": "modern build",
90
+ "test": "jest --passWithNoTests"
114
91
  }
115
92
  }