schema-seed 0.1.2 → 0.1.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/README.md +0 -18
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -164,24 +164,6 @@ export default defineConfig({
|
|
|
164
164
|
|
|
165
165
|
Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to get involved.
|
|
166
166
|
|
|
167
|
-
## NPM Publishing
|
|
168
|
-
|
|
169
|
-
To publish packages via GitHub Actions, you must add an `NPM_TOKEN` to your GitHub repository secrets:
|
|
170
|
-
1. Generate an **Automation** token on [npmjs.com](https://www.npmjs.com/).
|
|
171
|
-
2. In your GitHub repo, go to **Settings > Secrets and variables > Actions**.
|
|
172
|
-
3. Add a new repository secret named `NPM_TOKEN` with your token value.
|
|
173
|
-
|
|
174
|
-
## Releasing (for Maintainers)
|
|
175
|
-
|
|
176
|
-
This project uses [Changesets](https://github.com/changesets/changesets) for versioning and publishing.
|
|
177
|
-
|
|
178
|
-
1. **Record changes**: Run `pnpm changeset` and follow the prompts.
|
|
179
|
-
2. **Version packages**: Run `pnpm version-packages` to bump versions and update changelogs.
|
|
180
|
-
3. **Verify**: Run `pnpm preflight:release` to build, test, and validate package contents.
|
|
181
|
-
4. **Publish**: Run `pnpm release` to push to NPM.
|
|
182
|
-
|
|
183
|
-
*Note: Scoped packages require public access on first publish. Changesets handles this via the config, but if prompted, use `--access public`.*
|
|
184
|
-
|
|
185
167
|
## License
|
|
186
168
|
|
|
187
169
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "schema-seed",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for schema-seed",
|
|
6
6
|
"author": "Ali Nazar",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"commander": "^12.1.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
42
|
"jiti": "^2.6.1",
|
|
43
|
-
"schema-seed-core": "0.1.
|
|
44
|
-
"schema-seed-generators": "0.1.
|
|
43
|
+
"schema-seed-core": "0.1.3",
|
|
44
|
+
"schema-seed-generators": "0.1.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^20.19.27",
|
|
48
48
|
"tsup": "^8.3.5",
|
|
49
49
|
"typescript": "^5.7.2",
|
|
50
50
|
"vitest": "^2.1.8",
|
|
51
|
-
"schema-seed-adapter-mongodb": "0.1.
|
|
52
|
-
"schema-seed-adapter-mysql": "0.1.
|
|
53
|
-
"schema-seed-adapter-postgres": "0.1.
|
|
54
|
-
"schema-seed-adapter-sqlite": "0.1.
|
|
55
|
-
"schema-seed-adapter-mssql": "0.1.
|
|
56
|
-
"schema-seed-adapter-oracle": "0.1.
|
|
51
|
+
"schema-seed-adapter-mongodb": "0.1.3",
|
|
52
|
+
"schema-seed-adapter-mysql": "0.1.3",
|
|
53
|
+
"schema-seed-adapter-postgres": "0.1.3",
|
|
54
|
+
"schema-seed-adapter-sqlite": "0.1.3",
|
|
55
|
+
"schema-seed-adapter-mssql": "0.1.3",
|
|
56
|
+
"schema-seed-adapter-oracle": "0.1.3"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "tsup",
|