create-vue 3.1.0 → 3.1.1

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/outfile.cjs CHANGED
@@ -5904,6 +5904,9 @@ Done. Now run:
5904
5904
  console.log(` ${bold(green(`cd ${import_path4.default.relative(cwd, root)}`))}`);
5905
5905
  }
5906
5906
  console.log(` ${bold(green(getCommand(packageManager, "install")))}`);
5907
+ if (needsPrettier) {
5908
+ console.log(` ${bold(green(getCommand(packageManager, "lint")))}`);
5909
+ }
5907
5910
  console.log(` ${bold(green(getCommand(packageManager, "dev")))}`);
5908
5911
  console.log();
5909
5912
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "An easy way to start a Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "baseUrl": "./",
4
3
  "target": "esnext",
5
4
  "useDefineForClassFields": true,
6
5
  "module": "esnext",
@@ -12,7 +11,7 @@
12
11
  "resolveJsonModule": true,
13
12
  "esModuleInterop": true,
14
13
  "paths": {
15
- "@/*": ["src/*"]
14
+ "@/*": ["./src/*"]
16
15
  },
17
16
  "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
18
17
  "skipLibCheck": true