@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 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
@@ -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
  ],
package/dist/build.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export { defineBuildConfig } from './chunk-WO2VKBJR.mjs';
1
+ export { defineBuildConfig } from './chunk-6W3CPEDX.mjs';
2
2
  import './chunk-3UBBOKDF.mjs';
@@ -12,6 +12,7 @@ function defineBuildConfig(options = {}) {
12
12
  treeshake: true,
13
13
  entry: [
14
14
  "./src",
15
+ "!src/**/*.css",
15
16
  "!src/**/*.stories.ts(x)",
16
17
  "!src/**/*.test.ts(x)"
17
18
  ],
@@ -11,6 +11,7 @@ function defineDevConfig(options = {}) {
11
11
  watch: true,
12
12
  entry: [
13
13
  "./src",
14
+ "!src/**/*.css",
14
15
  "!src/**/*.stories.ts(x)",
15
16
  "!src/**/*.test.ts(x)"
16
17
  ],
package/dist/dev.js CHANGED
@@ -16,6 +16,7 @@ function defineDevConfig(options = {}) {
16
16
  watch: true,
17
17
  entry: [
18
18
  "./src",
19
+ "!src/**/*.css",
19
20
  "!src/**/*.stories.ts(x)",
20
21
  "!src/**/*.test.ts(x)"
21
22
  ],
package/dist/dev.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export { defineDevConfig } from './chunk-V3SLXPJQ.mjs';
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-WO2VKBJR.mjs';
2
- export { defineDevConfig } from './chunk-V3SLXPJQ.mjs';
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.4",
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.1",
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.3.3",
48
- "@workleap/eslint-plugin": "3.0.2",
49
- "@workleap/typescript-configs": "3.0.2",
50
- "@workleap/swc-configs": "2.2.2"
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",