crossnote 0.8.9 → 0.8.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crossnote",
3
- "version": "0.8.9",
3
+ "version": "0.8.11",
4
4
  "description": "A powerful markdown notebook tool",
5
5
  "keywords": [
6
6
  "markdown"
@@ -27,10 +27,10 @@
27
27
  "out"
28
28
  ],
29
29
  "scripts": {
30
- "build": "rm -rf ./out && yarn copy:files && yarn compile:less && yarn build:typings && yarn build:esbuild",
30
+ "build": "gulp clean-out && yarn copy:files && yarn compile:less && yarn build:typings && yarn build:esbuild",
31
31
  "build:esbuild": "node build.js",
32
32
  "build:typings": "tsc --project . --declaration",
33
- "build:watch": "rm -rf ./out && yarn copy:files && yarn compile:less && concurrently \"tsc --project . --watch\" \"node build.js --watch\" \"gulp watch-less\"",
33
+ "build:watch": "gulp clean-out && yarn copy:files && yarn compile:less && concurrently \"tsc --project . --watch\" \"node build.js --watch\" \"gulp watch-less\"",
34
34
  "check:all": "npm run check:prettier && npm run check:tsc && npm run check:lint",
35
35
  "check:lint": "eslint .",
36
36
  "check:prettier": "prettier --check \"**/*.*\"",