chore: update monorepo scripts and readme
This commit is contained in:
parent
a3da67c90c
commit
e811da3860
2 changed files with 8 additions and 6 deletions
|
@ -19,9 +19,11 @@ Build blazing-fast user interfaces with native [Astro](https://astro.build) comp
|
|||
To run the project's demo app locally:
|
||||
1. Clone/Fork the project
|
||||
1. Install deps: `npm i`
|
||||
1. Run the demo app: `npm run demo`
|
||||
1. Run the demo app: `npm run dev`
|
||||
1. Open on browser: `http://localhost:3000`
|
||||
|
||||
To play around the library using the demo app, the sourc code is in the `demo` directory.
|
||||
|
||||
*[Please report issues and suggestions](https://github.com/ayoayco/astro-reactive-library/issues)*
|
||||
|
||||
Created by [Ayo Ayco](https://ayco.io)
|
10
package.json
10
package.json
|
@ -14,11 +14,11 @@
|
|||
".": "./index.ts"
|
||||
},
|
||||
"scripts": {
|
||||
"demo": "npm run dev -w demo",
|
||||
"bump-package-patch": "npm version patch -w",
|
||||
"bump-package-minor": "npm version minor -w",
|
||||
"bump-package-major": "npm version major -w",
|
||||
"publish-package": "npm publish --public -w"
|
||||
"dev": "npm run dev -w demo",
|
||||
"bump-patch": "npm version patch -w",
|
||||
"bump-minor": "npm version minor -w",
|
||||
"bump-major": "npm version major -w",
|
||||
"publish": "npm publish --public -w"
|
||||
},
|
||||
"license": "ISC",
|
||||
"workspaces": [
|
||||
|
|
Loading…
Reference in a new issue