@read-frog/definitions 0.0.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.
- package/.turbo/turbo-build$colon$publish.log +14 -0
- package/CHANGELOG.md +15 -0
- package/LICENSE +674 -0
- package/dist/index.d.ts +263 -0
- package/dist/index.js +1546 -0
- package/eslint.config.mjs +3 -0
- package/package.json +26 -0
- package/src/constants/app.ts +1 -0
- package/src/constants/auth.ts +5 -0
- package/src/constants/dictionary.ts +1066 -0
- package/src/constants/url.ts +12 -0
- package/src/index.ts +6 -0
- package/src/schemas/version.ts +101 -0
- package/src/types/languages.ts +415 -0
- package/tsconfig.json +10 -0
- package/tsdown.config.ts +8 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
> @read-frog/definitions@0.0.1 build:publish /home/runner/work/read-frog-monorepo/read-frog-monorepo/packages/definitions
|
|
3
|
+
> tsdown
|
|
4
|
+
|
|
5
|
+
[34mℹ[39m tsdown [2mv0.16.1[22m powered by rolldown [2mv1.0.0-beta.47[22m
|
|
6
|
+
[34mℹ[39m Using tsdown config: [4m/home/runner/work/read-frog-monorepo/read-frog-monorepo/packages/definitions/tsdown.config.ts[24m
|
|
7
|
+
[34mℹ[39m entry: [34msrc/index.ts[39m
|
|
8
|
+
[34mℹ[39m tsconfig: [34mtsconfig.json[39m
|
|
9
|
+
[34mℹ[39m Build start
|
|
10
|
+
[34mℹ[39m Cleaning 2 files
|
|
11
|
+
[34mℹ[39m [2mdist/[22m[1mindex.js[22m [2m43.11 kB[22m [2m│ gzip: 13.30 kB[22m
|
|
12
|
+
[34mℹ[39m [2mdist/[22m[32m[1mindex.d.ts[22m[39m [2m 7.58 kB[22m [2m│ gzip: 2.68 kB[22m
|
|
13
|
+
[34mℹ[39m 2 files, total: 50.69 kB
|
|
14
|
+
[32m✔[39m Build complete in [32m1253ms[39m
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @read-frog/definitions
|
|
2
|
+
|
|
3
|
+
## 0.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
This change prepares the definitions package for public npm publication:
|
|
10
|
+
|
|
11
|
+
- Renamed package from @repo/definitions to @read-frog/definitions
|
|
12
|
+
- Added tsdown build configuration with ESM output
|
|
13
|
+
- Generated TypeScript declaration files for both formats
|
|
14
|
+
- Configured package.json exports for proper module resolution
|
|
15
|
+
- Updated all import statements across the monorepo
|