crossnote 0.9.16 → 0.9.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,6 +18,9 @@ API Documentation: https://shd101wyy.github.io/crossnote/
18
18
  # If you are using npm
19
19
  $ npm install --save crossnote
20
20
 
21
+ # If you are using pnpm
22
+ $ pnpm add crossnote
23
+
21
24
  # If you are using yarn
22
25
  $ yarn add crossnote
23
26
  ```
@@ -294,9 +297,9 @@ If your notebook has `.crossnote` directory, then when you run `await Notebook.i
294
297
  ## Development
295
298
 
296
299
  1. Clone this project.
297
- 2. Run `yarn install` from shell.
298
- 3. Run `yarn build:watch` to start the watch mode.
299
- 4. Run `yarn build` to build the project.
300
+ 2. Run `pnpm install` from shell.
301
+ 3. Run `pnpm build:watch` to start the watch mode.
302
+ 4. Run `pnpm build` to build the project.
300
303
 
301
304
  Or
302
305