create-vite-vue 1.5.1 → 1.5.2

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.
Files changed (2) hide show
  1. package/bin/index.js +1 -5
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  import { execSync } from 'child_process'
3
3
  import fs from 'fs'
4
4
  import path from 'path'
@@ -360,10 +360,6 @@ export default createRouter({
360
360
 
361
361
  // 1️⃣0️⃣ 安装依赖
362
362
  console.log('📦 安装依赖中...')
363
- // execSync('npm install', { cwd: targetDir, stdio: 'inherit' })
364
- // if(extraPlugins.includes('tailwind')) {
365
- // execSync('npm install tailwindcss @tailwindcss/postcss postcss', { cwd: targetDir, stdio: 'inherit' })
366
- // }
367
363
  let installCmd = 'npm install'
368
364
 
369
365
  if(extraPlugins.includes('tailwind')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vite-vue",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "基于Vite+Vue3创建基础项目模板",
5
5
  "main": "index.js",
6
6
  "author": "YwaiX",