diff --git a/README.md b/README.md index 5bb4990..b6f45c1 100644 --- a/README.md +++ b/README.md @@ -97,17 +97,19 @@ The file, `patches/mdx-mermaid+2.0.0.patch`, was generated by performing the fol 1. Bump `version` number in `package.json` > The version number will accessible via `PACKAGE_VERSION` at build time ([more info](https://stackoverflow.com/a/70524430)) -2. Generate a production build +2. Sync `package-lock.json` with `package.json` ```shell - npm run build + npm install ``` - > The production build will be in the `dist/` folder. -3. (Optional) Preview the production build +3. (Optional) Generate and preview the production build ```shell + npm run build npm run preview ``` > Then visit: http://localhost:4173 -4. Deploy the production build + > + > This step is optional because `npm run deploy` does it also +4. Generate and deploy a production build ```shell npm run deploy ``` diff --git a/package-lock.json b/package-lock.json index e3ada19..7477120 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "monocle", - "version": "0.0.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "monocle", - "version": "0.0.0", + "version": "1.0.0", "hasInstallScript": true, "dependencies": { "@kba/makefile-parser": "^0.0.6", diff --git a/package.json b/package.json index 9b0f61b..b8662f1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "monocle", "private": true, - "version": "0.0.0", + "version": "1.0.0", "type": "module", "scripts": { "dev": "vite",