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