create-valaxy 0.14.16 → 0.14.18

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/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  /* eslint-disable no-console */
3
3
 
4
- const fs = require('fs')
5
- const path = require('path')
4
+ const fs = require('node:fs')
5
+ const path = require('node:path')
6
6
  const argv = require('minimist')(process.argv.slice(2))
7
7
  const prompts = require('prompts')
8
8
  const execa = require('execa')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-valaxy",
3
- "version": "0.14.16",
3
+ "version": "0.14.18",
4
4
  "description": "Create Starter Template for Valaxy",
5
5
  "author": {
6
6
  "email": "me@yunyoujun.cn",
@@ -3,6 +3,8 @@ name: GitHub Pages
3
3
  on:
4
4
  push:
5
5
  branches:
6
+ # The branch where the project source code resides
7
+ # 项目源代码所在的分支
6
8
  - main
7
9
 
8
10
  jobs:
@@ -11,8 +11,8 @@
11
11
  "serve": "vite preview"
12
12
  },
13
13
  "dependencies": {
14
- "valaxy": "0.14.16",
15
- "valaxy-theme-yun": "0.14.16"
14
+ "valaxy": "0.14.18",
15
+ "valaxy-theme-yun": "0.14.18"
16
16
  },
17
17
  "devDependencies": {
18
18
  "typescript": "^4.8.4"