create-rspack 0.0.17 → 0.0.19

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/CHANGELOG.md +15 -0
  2. package/LICENSE +2 -1
  3. package/package.json +5 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # create-rspack
2
2
 
3
+ ## 0.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - b67418968: chore: 🤖 use module path instead of module id in diagnositc
8
+ - 962f8a251: fix: should create different module with different module rule
9
+ - 766c94042: fix rust test
10
+ - c1f19b817: align webpack config optimization.sideEffects
11
+
12
+ ## 0.0.18
13
+
14
+ ### Patch Changes
15
+
16
+ - 59edc2cb4: fix watch options
17
+
3
18
  ## 0.0.17
4
19
 
5
20
  ### Patch Changes
package/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Rspack
3
+ Copyright (c) 2022-present Bytedance, Inc. and its affiliates.
4
+
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,19 +1,16 @@
1
1
  {
2
2
  "name": "create-rspack",
3
- "version": "0.0.17",
4
- "description": "",
3
+ "version": "0.0.19",
4
+ "license": "Create a new rspack project",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "create-rspack": "index.js"
8
8
  },
9
- "keywords": [],
10
- "author": "",
11
- "license": "ISC",
9
+ "homepage": "https://rspack.org",
10
+ "bugs": "https://github.com/modern-js-dev/rspack/issues",
11
+ "repository": "modern-js-dev/rspack",
12
12
  "dependencies": {
13
13
  "yargs": "17.6.2",
14
14
  "prompts": "2.4.2"
15
- },
16
- "scripts": {
17
- "test": "echo \"Error: no test specified\" && exit 1"
18
15
  }
19
16
  }