@workleap/tsup-configs 3.0.3 → 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 +12 -0
- package/dist/build.js +6 -1
- package/dist/build.mjs +1 -1
- package/dist/{chunk-JENCWRR7.mjs → chunk-6W3CPEDX.mjs} +6 -1
- package/dist/{chunk-DQ32U23F.mjs → chunk-BQLDZRA2.mjs} +6 -1
- package/dist/dev.js +6 -1
- package/dist/dev.mjs +1 -1
- package/dist/index.js +12 -2
- package/dist/index.mjs +2 -2
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 3.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#181](https://github.com/gsoft-inc/wl-web-configs/pull/181) [`9a31cfc`](https://github.com/gsoft-inc/wl-web-configs/commit/9a31cfc6cc68455551c5b1b040843e8a7f83d6c9) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Excluding tests files and stories files from TSUP bundles.
|
|
14
|
+
|
|
3
15
|
## 3.0.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/build.js
CHANGED
|
@@ -15,7 +15,12 @@ function defineBuildConfig(options = {}) {
|
|
|
15
15
|
clean: true,
|
|
16
16
|
dts: true,
|
|
17
17
|
treeshake: true,
|
|
18
|
-
entry: [
|
|
18
|
+
entry: [
|
|
19
|
+
"./src",
|
|
20
|
+
"!src/**/*.css",
|
|
21
|
+
"!src/**/*.stories.ts(x)",
|
|
22
|
+
"!src/**/*.test.ts(x)"
|
|
23
|
+
],
|
|
19
24
|
outDir: "./dist",
|
|
20
25
|
format: "esm",
|
|
21
26
|
target: "esnext",
|
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';
|
|
@@ -10,7 +10,12 @@ function defineBuildConfig(options = {}) {
|
|
|
10
10
|
clean: true,
|
|
11
11
|
dts: true,
|
|
12
12
|
treeshake: true,
|
|
13
|
-
entry: [
|
|
13
|
+
entry: [
|
|
14
|
+
"./src",
|
|
15
|
+
"!src/**/*.css",
|
|
16
|
+
"!src/**/*.stories.ts(x)",
|
|
17
|
+
"!src/**/*.test.ts(x)"
|
|
18
|
+
],
|
|
14
19
|
outDir: "./dist",
|
|
15
20
|
format: "esm",
|
|
16
21
|
target: "esnext",
|
|
@@ -9,7 +9,12 @@ function defineDevConfig(options = {}) {
|
|
|
9
9
|
const config = {
|
|
10
10
|
dts: true,
|
|
11
11
|
watch: true,
|
|
12
|
-
entry: [
|
|
12
|
+
entry: [
|
|
13
|
+
"./src",
|
|
14
|
+
"!src/**/*.css",
|
|
15
|
+
"!src/**/*.stories.ts(x)",
|
|
16
|
+
"!src/**/*.test.ts(x)"
|
|
17
|
+
],
|
|
13
18
|
outDir: "./dist",
|
|
14
19
|
format: "esm",
|
|
15
20
|
target: "esnext",
|
package/dist/dev.js
CHANGED
|
@@ -14,7 +14,12 @@ function defineDevConfig(options = {}) {
|
|
|
14
14
|
const config = {
|
|
15
15
|
dts: true,
|
|
16
16
|
watch: true,
|
|
17
|
-
entry: [
|
|
17
|
+
entry: [
|
|
18
|
+
"./src",
|
|
19
|
+
"!src/**/*.css",
|
|
20
|
+
"!src/**/*.stories.ts(x)",
|
|
21
|
+
"!src/**/*.test.ts(x)"
|
|
22
|
+
],
|
|
18
23
|
outDir: "./dist",
|
|
19
24
|
format: "esm",
|
|
20
25
|
target: "esnext",
|
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
|
@@ -15,7 +15,12 @@ function defineBuildConfig(options = {}) {
|
|
|
15
15
|
clean: true,
|
|
16
16
|
dts: true,
|
|
17
17
|
treeshake: true,
|
|
18
|
-
entry: [
|
|
18
|
+
entry: [
|
|
19
|
+
"./src",
|
|
20
|
+
"!src/**/*.css",
|
|
21
|
+
"!src/**/*.stories.ts(x)",
|
|
22
|
+
"!src/**/*.test.ts(x)"
|
|
23
|
+
],
|
|
19
24
|
outDir: "./dist",
|
|
20
25
|
format: "esm",
|
|
21
26
|
target: "esnext",
|
|
@@ -37,7 +42,12 @@ function defineDevConfig(options = {}) {
|
|
|
37
42
|
const config = {
|
|
38
43
|
dts: true,
|
|
39
44
|
watch: true,
|
|
40
|
-
entry: [
|
|
45
|
+
entry: [
|
|
46
|
+
"./src",
|
|
47
|
+
"!src/**/*.css",
|
|
48
|
+
"!src/**/*.stories.ts(x)",
|
|
49
|
+
"!src/**/*.test.ts(x)"
|
|
50
|
+
],
|
|
41
51
|
outDir: "./dist",
|
|
42
52
|
format: "esm",
|
|
43
53
|
target: "esnext",
|
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,16 +37,15 @@
|
|
|
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/swc-configs": "2.2.
|
|
46
|
+
"typescript": "5.4.2",
|
|
47
|
+
"@workleap/eslint-plugin": "3.2.1",
|
|
48
|
+
"@workleap/swc-configs": "2.2.3",
|
|
50
49
|
"@workleap/typescript-configs": "3.0.2"
|
|
51
50
|
},
|
|
52
51
|
"publishConfig": {
|