create-rspack 0.0.20 → 0.1.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.
- package/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# create-rspack
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2ba87f3a: chore: let's rspack
|
|
8
|
+
|
|
9
|
+
## 0.0.21
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6d6e65e4: feat: update packages repository config
|
|
14
|
+
|
|
15
|
+
## 0.0.20
|
|
16
|
+
|
|
17
|
+
- d30bbcc: fix build failed for svg
|
|
18
|
+
|
|
3
19
|
## 0.0.19
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ Create a new rspack project.
|
|
|
9
9
|
|
|
10
10
|
## Documentation
|
|
11
11
|
|
|
12
|
-
See [https://rspack.
|
|
12
|
+
See [https://rspack.dev](https://rspack.dev) for details.
|
|
13
13
|
|
|
14
14
|
## License
|
|
15
15
|
|
|
16
|
-
Rspack is [MIT licensed](https://github.com/
|
|
16
|
+
Rspack is [MIT licensed](https://github.com/web-infra-dev/rspack/blob/main/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rspack",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"license": "Create a new rspack project",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-rspack": "index.js"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://rspack.
|
|
10
|
-
"bugs": "https://github.com/
|
|
11
|
-
"repository": "
|
|
9
|
+
"homepage": "https://rspack.dev",
|
|
10
|
+
"bugs": "https://github.com/web-infra-dev/rspack/issues",
|
|
11
|
+
"repository": "web-infra-dev/rspack",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"yargs": "17.6.2",
|
|
14
14
|
"prompts": "2.4.2"
|