@read-frog/definitions 0.0.1 → 0.0.3

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,17 @@
1
1
  # @read-frog/definitions
2
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
+
3
15
  ## 0.0.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,9 +1,20 @@
1
1
  {
2
2
  "name": "@read-frog/definitions",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
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",
14
+ "files": [
15
+ "CHANGELOG.md",
16
+ "dist"
17
+ ],
7
18
  "dependencies": {
8
19
  "zod": "^4.0.17"
9
20
  },
@@ -12,12 +23,6 @@
12
23
  "@repo/eslint-config": "0.0.0",
13
24
  "@repo/typescript-config": "0.0.0"
14
25
  },
15
- "module": "./dist/index.js",
16
- "types": "./dist/index.d.ts",
17
- "exports": {
18
- ".": "./dist/index.js",
19
- "./package.json": "./package.json"
20
- },
21
26
  "scripts": {
22
27
  "build:publish": "tsdown",
23
28
  "lint": "eslint .",
@@ -1,14 +0,0 @@
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
- ℹ tsdown v0.16.1 powered by rolldown v1.0.0-beta.47
6
- ℹ Using tsdown config: /home/runner/work/read-frog-monorepo/read-frog-monorepo/packages/definitions/tsdown.config.ts
7
- ℹ entry: src/index.ts
8
- ℹ tsconfig: tsconfig.json
9
- ℹ Build start
10
- ℹ Cleaning 2 files
11
- ℹ dist/index.js 43.11 kB │ gzip: 13.30 kB
12
- ℹ dist/index.d.ts  7.58 kB │ gzip: 2.68 kB
13
- ℹ 2 files, total: 50.69 kB
14
- ✔ Build complete in 1253ms
package/eslint.config.mjs DELETED
@@ -1,3 +0,0 @@
1
- import { typedConfig } from '@repo/eslint-config/base'
2
-
3
- export default typedConfig
@@ -1 +0,0 @@
1
- export const APP_NAME = 'Read Frog'
@@ -1,5 +0,0 @@
1
- export const AUTH_BASE_PATH = '/api/identity'
2
-
3
- export const AUTH_COOKIE_PATTERNS = [
4
- 'better-auth.session_token',
5
- ] as const