create-vue 3.1.4 → 3.1.5

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
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- /*! create-vue v3.1.4 | MIT */
2
+ /*! create-vue v3.1.5 | MIT */
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -5799,7 +5799,7 @@ ${banner_default}
5799
5799
  }
5800
5800
  const {
5801
5801
  projectName,
5802
- packageName = projectName,
5802
+ packageName = projectName || defaultProjectName,
5803
5803
  shouldOverwrite = argv.force,
5804
5804
  needsJsx = argv.jsx,
5805
5805
  needsTypeScript = argv.typescript,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "description": "An easy way to start a Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,4 +1,7 @@
1
1
  {
2
+ "scripts": {
3
+ "typecheck": "vue-tsc --noEmit && vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
4
+ },
2
5
  "devDependencies": {
3
6
  "@types/jsdom": "^16.2.14"
4
7
  }
@@ -3,6 +3,10 @@
3
3
  "include": ["src/**/__tests__/*"],
4
4
  "compilerOptions": {
5
5
  "composite": true,
6
+ "baseUrl": ".",
7
+ "paths": {
8
+ "@/*": ["./src/*"]
9
+ },
6
10
  "types": ["node", "jsdom"]
7
11
  }
8
12
  }