@workleap/tsup-configs 3.0.3 → 3.0.4

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @workleap/tsup-configs
2
2
 
3
+ ## 3.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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.
8
+
3
9
  ## 3.0.3
4
10
 
5
11
  ### Patch Changes
package/dist/build.js CHANGED
@@ -15,7 +15,11 @@ function defineBuildConfig(options = {}) {
15
15
  clean: true,
16
16
  dts: true,
17
17
  treeshake: true,
18
- entry: ["./src"],
18
+ entry: [
19
+ "./src",
20
+ "!src/**/*.stories.ts(x)",
21
+ "!src/**/*.test.ts(x)"
22
+ ],
19
23
  outDir: "./dist",
20
24
  format: "esm",
21
25
  target: "esnext",
package/dist/build.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export { defineBuildConfig } from './chunk-JENCWRR7.mjs';
1
+ export { defineBuildConfig } from './chunk-WO2VKBJR.mjs';
2
2
  import './chunk-3UBBOKDF.mjs';
@@ -9,7 +9,11 @@ function defineDevConfig(options = {}) {
9
9
  const config = {
10
10
  dts: true,
11
11
  watch: true,
12
- entry: ["./src"],
12
+ entry: [
13
+ "./src",
14
+ "!src/**/*.stories.ts(x)",
15
+ "!src/**/*.test.ts(x)"
16
+ ],
13
17
  outDir: "./dist",
14
18
  format: "esm",
15
19
  target: "esnext",
@@ -10,7 +10,11 @@ function defineBuildConfig(options = {}) {
10
10
  clean: true,
11
11
  dts: true,
12
12
  treeshake: true,
13
- entry: ["./src"],
13
+ entry: [
14
+ "./src",
15
+ "!src/**/*.stories.ts(x)",
16
+ "!src/**/*.test.ts(x)"
17
+ ],
14
18
  outDir: "./dist",
15
19
  format: "esm",
16
20
  target: "esnext",
package/dist/dev.js CHANGED
@@ -14,7 +14,11 @@ function defineDevConfig(options = {}) {
14
14
  const config = {
15
15
  dts: true,
16
16
  watch: true,
17
- entry: ["./src"],
17
+ entry: [
18
+ "./src",
19
+ "!src/**/*.stories.ts(x)",
20
+ "!src/**/*.test.ts(x)"
21
+ ],
18
22
  outDir: "./dist",
19
23
  format: "esm",
20
24
  target: "esnext",
package/dist/dev.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export { defineDevConfig } from './chunk-DQ32U23F.mjs';
1
+ export { defineDevConfig } from './chunk-V3SLXPJQ.mjs';
2
2
  import './chunk-3UBBOKDF.mjs';
package/dist/index.js CHANGED
@@ -15,7 +15,11 @@ function defineBuildConfig(options = {}) {
15
15
  clean: true,
16
16
  dts: true,
17
17
  treeshake: true,
18
- entry: ["./src"],
18
+ entry: [
19
+ "./src",
20
+ "!src/**/*.stories.ts(x)",
21
+ "!src/**/*.test.ts(x)"
22
+ ],
19
23
  outDir: "./dist",
20
24
  format: "esm",
21
25
  target: "esnext",
@@ -37,7 +41,11 @@ function defineDevConfig(options = {}) {
37
41
  const config = {
38
42
  dts: true,
39
43
  watch: true,
40
- entry: ["./src"],
44
+ entry: [
45
+ "./src",
46
+ "!src/**/*.stories.ts(x)",
47
+ "!src/**/*.test.ts(x)"
48
+ ],
41
49
  outDir: "./dist",
42
50
  format: "esm",
43
51
  target: "esnext",
package/dist/index.mjs CHANGED
@@ -1,3 +1,3 @@
1
- export { defineBuildConfig } from './chunk-JENCWRR7.mjs';
2
- export { defineDevConfig } from './chunk-DQ32U23F.mjs';
1
+ export { defineBuildConfig } from './chunk-WO2VKBJR.mjs';
2
+ export { defineDevConfig } from './chunk-V3SLXPJQ.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.3",
5
+ "version": "3.0.4",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
8
8
  "workleap",
@@ -46,8 +46,8 @@
46
46
  "tsup": "8.0.2",
47
47
  "typescript": "5.3.3",
48
48
  "@workleap/eslint-plugin": "3.0.2",
49
- "@workleap/swc-configs": "2.2.2",
50
- "@workleap/typescript-configs": "3.0.2"
49
+ "@workleap/typescript-configs": "3.0.2",
50
+ "@workleap/swc-configs": "2.2.2"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public",