From 20f1ccbf2b130cb2a9a03f1f38b73f36008e37dc Mon Sep 17 00:00:00 2001 From: eecavanna Date: Sat, 28 Oct 2023 18:21:41 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Bump=20version=20number=20from?= =?UTF-8?q?=20`0.0.0`=20to=20`1.0.0`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 +++++++----- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) 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",