forked from chakra-ui/zag
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve build script and time
- Loading branch information
1 parent
e61d56f
commit de40a73
Showing
44 changed files
with
4,799 additions
and
2,339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,12 @@ | |
"author": "Segun Adebayo <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"bundle": "esr scripts/build.ts", | ||
"build": "parcel build", | ||
"buildr": "esr scripts/build.ts", | ||
"dev": "yarn buildr --dev", | ||
"watch": "yarn buildr --dev --watch", | ||
"build:bundle": "yarn buildr", | ||
"build:types": "ultra -r --silent --filter \"@ui-machines/*\" --build", | ||
"build": "yarn build:types && yarn build:bundle", | ||
"start:react": "cd examples/next-ts && yarn dev", | ||
"start:vue": "cd examples/vue-ts && yarn dev", | ||
"start:solid": "cd examples/solid-ts && yarn dev", | ||
|
@@ -19,19 +23,16 @@ | |
"cypress:run": "cypress run", | ||
"cypress:dev": "cypress open", | ||
"fix:pkgs": "manypkg fix", | ||
"fix:preconstruct": "preconstruct fix", | ||
"gen:machine": "ts-node scripts/generate-machine.ts", | ||
"gen:util": "ts-node scripts/generate-util.ts", | ||
"lint": "npm-run-all lint:**", | ||
"lint:code": "eslint . --ext .js,.jsx,.ts,.tsx -c .eslintrc", | ||
"lint:pkgs": "manypkg check", | ||
"lint:types": "tsc --noEmit --incremental", | ||
"lint:validate": "preconstruct validate", | ||
"pkg": "manypkg run", | ||
"postinstall": "patch-package", | ||
"prepare:": "husky install", | ||
"release": "changeset publish", | ||
"start": "preconstruct watch", | ||
"test": "jest --maxWorkers=50%", | ||
"test:ci": "jest --runInBand" | ||
}, | ||
|
@@ -60,11 +61,13 @@ | |
"@typescript-eslint/parser": "^4.23.0", | ||
"axe-core": "^4.3.3", | ||
"chalk": "^4.1.2", | ||
"chokidar": "^3.5.2", | ||
"commitlint": "^12.1.4", | ||
"cypress": "^8.5.0", | ||
"cypress-axe": "^0.13.0", | ||
"cypress-plugin-tab": "^1.0.5", | ||
"cypress-real-events": "^1.5.1", | ||
"dts-bundle-generator": "^6.0.0", | ||
"esbuild": "^0.13.14", | ||
"esbuild-runner": "^2.2.1", | ||
"eslint": "^7.26.0", | ||
|
@@ -84,14 +87,16 @@ | |
"lint-staged": "^11.0.0", | ||
"lodash": "^4.17.21", | ||
"node-plop": "^0.26.2", | ||
"npm-dts": "^1.3.10", | ||
"npm-run-all": "^4.1.5", | ||
"patch-package": "^6.4.7", | ||
"prettier": "^2.3.0", | ||
"pretty-bytes": "^5.6.0", | ||
"rimraf": "^3.0.2", | ||
"shelljs": "^0.8.4", | ||
"start-server-and-test": "^1.14.0", | ||
"typescript": "4.4.3" | ||
"typescript": "4.4.3", | ||
"ultra-runner": "^3.10.5" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.