Skip to content

Commit

Permalink
build(next): add new scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dragidavid committed Jan 24, 2025
1 parent 90c5741 commit dcb4f56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remoteoss/json-schema-form",
"version": "1.0.0-alpha.1",
"version": "1.0.0-beta.0",
"packageManager": "[email protected]",
"description": "WIP V2 – Headless UI form powered by JSON Schemas",
"author": "Remote.com <[email protected]> (https://remote.com/)",
Expand All @@ -18,15 +18,16 @@
],
"main": "index.js",
"engines": {
"node": "22.13.1"
"node": ">=18.14.0"
},
"scripts": {
"build": "tsup",
"test": "jest",
"test:watch": "jest --watchAll",
"test:file": "jest --runTestsByPath",
"lint": "eslint --max-warnings 0 .",
"release": "cd .. && npm run release:next"
"release:dev": "cd .. && npm run release:v1:dev",
"release:beta": "cd .. && npm run release:v1:beta"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"release:dev:minor": "node scripts/release_dev minor",
"release:main:patch": "node scripts/release_main patch",
"release:main:minor": "node scripts/release_main minor",
"release:next": "node scripts/release_next",
"release:v1:dev": "node scripts/release_v1 dev",
"release:v1:beta": "node scripts/release_v1 beta",
"version_as_main": "node scripts/version_as_main.js",
"psrepublishOnly": "if [[ ! $PWD =~ scripts$ ]]; then npm run publish:nopublish; fi",
"psublish:nopublish": "echo 'Use `npm release:*` script instead && exit 1"
Expand Down

0 comments on commit dcb4f56

Please sign in to comment.