tsdown-config-silverwind 2.0.7 → 2.1.1

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/README.md +1 -1
  2. package/dist/index.js +0 -3
  3. package/package.json +12 -12
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # tsdown-config-silverwind [![](https://img.shields.io/npm/v/tsdown-config-silverwind.svg)](https://www.npmjs.org/package/tsdown-config-silverwind) [![](https://img.shields.io/badge/licence-bsd-blue.svg)](https://raw.githubusercontent.com/silverwind/tsdown-config-silverwind/master/LICENSE)
1
+ # tsdown-config-silverwind [![](https://img.shields.io/npm/v/tsdown-config-silverwind.svg)](https://www.npmjs.org/package/tsdown-config-silverwind) [![](https://packagephobia.com/badge?p=tsdown-config-silverwind)](https://packagephobia.com/result?p=tsdown-config-silverwind) [![](https://img.shields.io/badge/licence-bsd-blue.svg)](https://raw.githubusercontent.com/silverwind/tsdown-config-silverwind/master/LICENSE)
2
2
 
3
3
  Shared tsdown configuration
4
4
 
package/dist/index.js CHANGED
@@ -48,7 +48,6 @@ function nodeLib({ url, entry, outputOptions, ...other }) {
48
48
  return base({
49
49
  entry,
50
50
  platform: "node",
51
- sourcemap: false,
52
51
  minify: false,
53
52
  outputOptions: {
54
53
  ...isSingleEntry(entry) && { codeSplitting: false },
@@ -62,7 +61,6 @@ function webLib({ url, ...other }) {
62
61
  return base({
63
62
  platform: "browser",
64
63
  target: "esnext",
65
- sourcemap: true,
66
64
  minify: false,
67
65
  url,
68
66
  ...other
@@ -72,7 +70,6 @@ function nodeCli({ url, entry, outputOptions, ...other }) {
72
70
  return nodeLib({
73
71
  entry,
74
72
  platform: "node",
75
- sourcemap: false,
76
73
  minify: true,
77
74
  outputOptions: {
78
75
  ...isSingleEntry(entry) && { codeSplitting: false },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsdown-config-silverwind",
3
- "version": "2.0.7",
3
+ "version": "2.1.1",
4
4
  "description": "Shared tsdown configuration",
5
5
  "author": "silverwind <me@silverwind.io>",
6
6
  "repository": "silverwind/tsdown-config-silverwind",
@@ -21,17 +21,17 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "25.6.0",
24
- "@typescript/native-preview": "7.0.0-dev.20260416.1",
25
- "eslint": "10.2.0",
26
- "eslint-config-silverwind": "131.0.4",
24
+ "@typescript/native-preview": "7.0.0-dev.20260427.1",
25
+ "eslint": "10.2.1",
26
+ "eslint-config-silverwind": "132.0.0",
27
27
  "jest-extended": "7.0.0",
28
- "tsdown": "0.21.9",
29
- "typescript": "6.0.2",
30
- "typescript-config-silverwind": "17.0.0",
31
- "updates": "17.15.5",
32
- "updates-config-silverwind": "2.1.0",
33
- "versions": "15.0.0",
34
- "vitest": "4.1.4",
35
- "vitest-config-silverwind": "11.1.4"
28
+ "tsdown": "0.21.10",
29
+ "typescript": "6.0.3",
30
+ "typescript-config-silverwind": "18.0.0",
31
+ "updates": "17.16.3",
32
+ "updates-config-silverwind": "2.1.1",
33
+ "versions": "15.0.1",
34
+ "vitest": "4.1.5",
35
+ "vitest-config-silverwind": "11.3.1"
36
36
  }
37
37
  }