@workleap/tsup-configs 3.0.4 → 3.0.5
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 +6 -0
- package/dist/build.js +1 -0
- package/dist/build.mjs +1 -1
- package/dist/{chunk-WO2VKBJR.mjs → chunk-6W3CPEDX.mjs} +1 -0
- package/dist/{chunk-V3SLXPJQ.mjs → chunk-BQLDZRA2.mjs} +1 -0
- package/dist/dev.js +1 -0
- package/dist/dev.mjs +1 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -2
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @workleap/tsup-configs
|
|
2
2
|
|
|
3
|
+
## 3.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#197](https://github.com/gsoft-inc/wl-web-configs/pull/197) [`d8b3d36`](https://github.com/gsoft-inc/wl-web-configs/commit/d8b3d36ab87dfd1e6be06186d03ed3427f4c64e0) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Exclusing css files from the entry option as they should import from tsx files.
|
|
8
|
+
|
|
3
9
|
## 3.0.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/build.js
CHANGED
package/dist/build.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { defineBuildConfig } from './chunk-
|
|
1
|
+
export { defineBuildConfig } from './chunk-6W3CPEDX.mjs';
|
|
2
2
|
import './chunk-3UBBOKDF.mjs';
|
package/dist/dev.js
CHANGED
package/dist/dev.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { defineDevConfig } from './chunk-
|
|
1
|
+
export { defineDevConfig } from './chunk-BQLDZRA2.mjs';
|
|
2
2
|
import './chunk-3UBBOKDF.mjs';
|
package/dist/index.js
CHANGED
|
@@ -17,6 +17,7 @@ function defineBuildConfig(options = {}) {
|
|
|
17
17
|
treeshake: true,
|
|
18
18
|
entry: [
|
|
19
19
|
"./src",
|
|
20
|
+
"!src/**/*.css",
|
|
20
21
|
"!src/**/*.stories.ts(x)",
|
|
21
22
|
"!src/**/*.test.ts(x)"
|
|
22
23
|
],
|
|
@@ -43,6 +44,7 @@ function defineDevConfig(options = {}) {
|
|
|
43
44
|
watch: true,
|
|
44
45
|
entry: [
|
|
45
46
|
"./src",
|
|
47
|
+
"!src/**/*.css",
|
|
46
48
|
"!src/**/*.stories.ts(x)",
|
|
47
49
|
"!src/**/*.test.ts(x)"
|
|
48
50
|
],
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { defineBuildConfig } from './chunk-
|
|
2
|
-
export { defineDevConfig } from './chunk-
|
|
1
|
+
export { defineBuildConfig } from './chunk-6W3CPEDX.mjs';
|
|
2
|
+
export { defineDevConfig } from './chunk-BQLDZRA2.mjs';
|
|
3
3
|
import './chunk-3UBBOKDF.mjs';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@workleap/tsup-configs",
|
|
3
3
|
"author": "Workleap",
|
|
4
4
|
"description": "Workleap's recommended tsup configs.",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.5",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"workleap",
|
|
@@ -37,17 +37,16 @@
|
|
|
37
37
|
"typescript": "*"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@swc/core": "1.4.
|
|
41
|
-
"@swc/helpers": "0.5.6",
|
|
40
|
+
"@swc/core": "1.4.6",
|
|
42
41
|
"@swc/jest": "0.2.36",
|
|
43
42
|
"@types/jest": "29.5.12",
|
|
44
43
|
"jest": "29.7.0",
|
|
45
44
|
"ts-node": "10.9.2",
|
|
46
45
|
"tsup": "8.0.2",
|
|
47
|
-
"typescript": "5.
|
|
48
|
-
"@workleap/eslint-plugin": "3.
|
|
49
|
-
"@workleap/
|
|
50
|
-
"@workleap/
|
|
46
|
+
"typescript": "5.4.2",
|
|
47
|
+
"@workleap/eslint-plugin": "3.2.1",
|
|
48
|
+
"@workleap/swc-configs": "2.2.3",
|
|
49
|
+
"@workleap/typescript-configs": "3.0.2"
|
|
51
50
|
},
|
|
52
51
|
"publishConfig": {
|
|
53
52
|
"access": "public",
|