@nyig/models 0.2.0 → 0.2.2

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 CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@nyig/models",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist/*"
10
+ ],
8
11
  "peerDependencies": {
9
12
  "zod": ">=3.22.4"
10
13
  },
@@ -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)
@@ -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,9 +0,0 @@
1
- root = true
2
-
3
- [*]
4
- indent_size = 2
5
- indent_style = space
6
- end_of_line = lf
7
- charset = utf-8
8
- trim_trailing_whitespace = true
9
- insert_final_newline = true
@@ -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
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
-
3
- . "$(dirname "$0")/_/husky.sh"
4
-
5
- npx lint-staged
package/.prettierignore DELETED
@@ -1,4 +0,0 @@
1
- dist
2
- node_modules
3
- .changeset
4
- .husky
package/.prettierrc.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "printWidth": 100,
3
- "tabWidth": 2
4
- }
package/CHANGELOG.md DELETED
@@ -1,7 +0,0 @@
1
- # @nyig/models
2
-
3
- ## 0.2.0
4
-
5
- ### Minor Changes
6
-
7
- - bc1c80f: Add pnpm lock and remove package-lock
package/src/index.ts DELETED
@@ -1,5 +0,0 @@
1
- import { z } from "zod";
2
-
3
- export const zStudent = z.object({
4
- name: z.string(),
5
- });
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
- }