@read-frog/definitions 0.0.2 → 0.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/package.json +8 -8
- package/CHANGELOG.md +0 -21
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@read-frog/definitions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"private": false,
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
6
12
|
"main": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
7
14
|
"files": [
|
|
8
|
-
"CHANGELOG.md",
|
|
9
15
|
"dist"
|
|
10
16
|
],
|
|
11
17
|
"dependencies": {
|
|
@@ -16,12 +22,6 @@
|
|
|
16
22
|
"@repo/eslint-config": "0.0.0",
|
|
17
23
|
"@repo/typescript-config": "0.0.0"
|
|
18
24
|
},
|
|
19
|
-
"module": "./dist/index.js",
|
|
20
|
-
"types": "./dist/index.d.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
".": "./dist/index.js",
|
|
23
|
-
"./package.json": "./package.json"
|
|
24
|
-
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build:publish": "tsdown",
|
|
27
27
|
"lint": "eslint .",
|
package/CHANGELOG.md
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# @read-frog/definitions
|
|
2
|
-
|
|
3
|
-
## 0.0.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#11](https://github.com/mengxi-ream/read-frog-monorepo/pull/11) [`4b75fc7`](https://github.com/mengxi-ream/read-frog-monorepo/commit/4b75fc7ea030a2b59573a3107a17f97cdb414697) Thanks [@mengxi-ream](https://github.com/mengxi-ream)! - fix(definitions): exclude unnecessary files from npm package
|
|
8
|
-
|
|
9
|
-
## 0.0.1
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- [#8](https://github.com/mengxi-ream/read-frog-monorepo/pull/8) [`4470092`](https://github.com/mengxi-ream/read-frog-monorepo/commit/447009245a001689771c68121783895efb6ad14f) Thanks [@mengxi-ream](https://github.com/mengxi-ream)! - ci: rename package from @repo/definitions to @read-frog/definitions and add tsdown build configuration
|
|
14
|
-
|
|
15
|
-
This change prepares the definitions package for public npm publication:
|
|
16
|
-
|
|
17
|
-
- Renamed package from @repo/definitions to @read-frog/definitions
|
|
18
|
-
- Added tsdown build configuration with ESM output
|
|
19
|
-
- Generated TypeScript declaration files for both formats
|
|
20
|
-
- Configured package.json exports for proper module resolution
|
|
21
|
-
- Updated all import statements across the monorepo
|