@g4mbit/ui
v0.0.89
Published
```shell "lint": "eslint src --cache", // lint all the code "build": "tsc -b", // run tsc without emitting used internally inside the monorepo "clean": "rimraf dist", // clean the dist folder "build:ci": "pnpm run clean && tsc && pnpm run copy:style && pn
Downloads
17
Readme
Package json scripts explained
"lint": "eslint src --cache", // lint all the code
"build": "tsc -b", // run tsc without emitting used internally inside the monorepo
"clean": "rimraf dist", // clean the dist folder
"build:ci": "pnpm run clean && tsc && pnpm run copy:style && pnpm run copy:pkg", // build the package for npm
"copy:style": "cp -r style dist/style", // copy the style folder to dist
"copy:pkg": "cp package.json dist/package.json" // copy the package.json to dist