@danielx/civet 0.5.26 → 0.5.27

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": "@danielx/civet",
3
- "version": "0.5.26",
3
+ "version": "0.5.27",
4
4
  "description": "CoffeeScript style syntax for TypeScript",
5
5
  "main": "dist/main.js",
6
6
  "module": "dist/main.mjs",
@@ -18,17 +18,16 @@
18
18
  },
19
19
  "files": [
20
20
  "dist/",
21
- "register.js",
22
- "register.mjs"
21
+ "register.js"
23
22
  ],
24
23
  "engines": {
25
24
  "node": "^18.6.0 || ^16.17.0"
26
25
  },
27
26
  "scripts": {
28
27
  "build": "bash ./build/build.sh",
29
- "docs:dev": "vitepress dev civet.dev",
30
- "docs:build": "vitepress build civet.dev",
31
- "docs:preview": "vitepress preview civet.dev",
28
+ "docs:dev": "yarn build && vitepress dev civet.dev",
29
+ "docs:build": "yarn build && vitepress build civet.dev",
30
+ "docs:preview": "yarn build && vitepress preview civet.dev",
32
31
  "prepublishOnly": "yarn build && yarn test",
33
32
  "test": "c8 mocha"
34
33
  },