@nyig/models 0.2.1 → 0.2.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/package.json +12 -13
- package/.changeset/README.md +0 -8
- package/.changeset/config.json +0 -11
- package/.editorconfig +0 -9
- package/.github/workflows/main.yml +0 -22
- package/.github/workflows/publish.yml +0 -36
- package/.husky/pre-commit +0 -5
- package/.prettierignore +0 -4
- package/.prettierrc.json +0 -4
- package/CHANGELOG.md +0 -7
- package/src/index.ts +0 -5
- package/tsconfig.json +0 -19
- /package/{dist/index.d.mts → index.d.mts} +0 -0
- /package/{dist/index.d.ts → index.d.ts} +0 -0
- /package/{dist/index.js → index.js} +0 -0
- /package/{dist/index.mjs → index.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nyig/models",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"main": "
|
|
6
|
-
"module": "
|
|
7
|
-
"types": "
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
10
|
-
"clean": "rm -rf dist node_modules",
|
|
11
|
-
"format": "prettier --write src",
|
|
12
|
-
"lint": "pnpm run format && tsc",
|
|
13
|
-
"prepare": "husky install",
|
|
14
|
-
"release": "pnpm run build && changeset publish"
|
|
15
|
-
},
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"module": "index.mjs",
|
|
7
|
+
"types": "index.d.ts",
|
|
16
8
|
"peerDependencies": {
|
|
17
9
|
"zod": ">=3.22.4"
|
|
18
10
|
},
|
|
@@ -29,5 +21,12 @@
|
|
|
29
21
|
},
|
|
30
22
|
"publishConfig": {
|
|
31
23
|
"directory": "dist"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
27
|
+
"clean": "rm -rf dist node_modules",
|
|
28
|
+
"format": "prettier --write src",
|
|
29
|
+
"lint": "pnpm run format && tsc",
|
|
30
|
+
"release": "pnpm run build && changeset publish"
|
|
32
31
|
}
|
|
33
|
-
}
|
|
32
|
+
}
|
package/.changeset/README.md
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# Changesets
|
|
2
|
-
|
|
3
|
-
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
|
|
4
|
-
with multi-package repos, or single-package repos to help you version and publish your code. You can
|
|
5
|
-
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
|
|
6
|
-
|
|
7
|
-
We have a quick list of common questions to get you started engaging with this project in
|
|
8
|
-
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
|
package/.changeset/config.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
|
|
3
|
-
"changelog": "@changesets/cli/changelog",
|
|
4
|
-
"commit": false,
|
|
5
|
-
"fixed": [],
|
|
6
|
-
"linked": [],
|
|
7
|
-
"access": "public",
|
|
8
|
-
"baseBranch": "main",
|
|
9
|
-
"updateInternalDependencies": "patch",
|
|
10
|
-
"ignore": []
|
|
11
|
-
}
|
package/.editorconfig
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
name: Build and push package to npm on merge to 'main'
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- "main"
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
build:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
steps:
|
|
12
|
-
- uses: actions/checkout@v4
|
|
13
|
-
- uses: pnpm/action-setup@v3
|
|
14
|
-
with:
|
|
15
|
-
version: 8
|
|
16
|
-
- uses: actions/setup-node@v4
|
|
17
|
-
with:
|
|
18
|
-
node-version: 20.x
|
|
19
|
-
cache: pnpm
|
|
20
|
-
|
|
21
|
-
- run: pnpm install --frozen-lockfile
|
|
22
|
-
- run: pnpm run lint && pnpm run build
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
name: Publish
|
|
2
|
-
on:
|
|
3
|
-
workflow_run:
|
|
4
|
-
workflows: [Build and push package to npm on merge to 'main']
|
|
5
|
-
branches: [main]
|
|
6
|
-
types: [completed]
|
|
7
|
-
|
|
8
|
-
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
9
|
-
|
|
10
|
-
permissions:
|
|
11
|
-
contents: write
|
|
12
|
-
pull-requests: write
|
|
13
|
-
|
|
14
|
-
jobs:
|
|
15
|
-
publish:
|
|
16
|
-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
17
|
-
runs-on: ubuntu-latest
|
|
18
|
-
steps:
|
|
19
|
-
- uses: actions/checkout@v4
|
|
20
|
-
- uses: pnpm/action-setup@v3
|
|
21
|
-
with:
|
|
22
|
-
version: 8
|
|
23
|
-
- uses: actions/setup-node@v4
|
|
24
|
-
with:
|
|
25
|
-
node-version: 20.x
|
|
26
|
-
cache: "pnpm"
|
|
27
|
-
|
|
28
|
-
- run: pnpm install --frozen-lockfile
|
|
29
|
-
- name: Create Release Pull Request or Publish
|
|
30
|
-
id: changesets
|
|
31
|
-
uses: changesets/action@v1
|
|
32
|
-
with:
|
|
33
|
-
publish: pnpm run release
|
|
34
|
-
env:
|
|
35
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
36
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.husky/pre-commit
DELETED
package/.prettierignore
DELETED
package/.prettierrc.json
DELETED
package/CHANGELOG.md
DELETED
package/src/index.ts
DELETED
package/tsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"moduleDetection": "force",
|
|
5
|
-
"esModuleInterop": true,
|
|
6
|
-
"forceConsistentCasingInFileNames": true,
|
|
7
|
-
"strict": true,
|
|
8
|
-
"skipLibCheck": true,
|
|
9
|
-
"noUncheckedIndexedAccess": true,
|
|
10
|
-
/* If NOT transpiling with TypeScript: */
|
|
11
|
-
"moduleResolution": "Bundler",
|
|
12
|
-
"module": "ESNext",
|
|
13
|
-
"noEmit": true,
|
|
14
|
-
/* If your code runs in the DOM: */
|
|
15
|
-
"lib": ["es2022", "dom", "dom.iterable"]
|
|
16
|
-
},
|
|
17
|
-
"include": ["src"],
|
|
18
|
-
"exclude": ["dist", "node_modules"]
|
|
19
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|