create-packer 1.31.0 → 1.31.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-packer",
3
- "version": "1.31.0",
3
+ "version": "1.31.2",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/kevily/create-packer",
6
6
  "author": "1k <bug_zero@163.com>",
@@ -1,47 +1,47 @@
1
- {
2
- "name": "next",
3
- "version": "0.1.0",
4
- "private": true,
5
- "scripts": {
6
- "prepare": "husky install",
7
- "dev": "next dev",
8
- "build": "next build",
9
- "start": "next start",
10
- "lint": "next lint",
11
- "format": "prettier --write \"{app,components,pages,domain,providers}/**/*.{ts,js,tsx,jsx,css,scss,less}\" \"./package.json\"",
12
- "cz": "cz",
13
- "push": "npm run commit && git push",
14
- "commit": "git add . && npm run cz"
15
- },
16
- "dependencies": {
17
- "@types/node": "20.4.2",
18
- "@types/react": "18.2.15",
19
- "@types/react-dom": "18.2.7",
20
- "autoprefixer": "10.4.14",
21
- "eslint": "8.56.0",
22
- "eslint-config-next": "14.1.0",
23
- "next": "13.4.10",
24
- "postcss": "8.4.35",
25
- "react": "18.2.0",
26
- "react-dom": "18.2.0",
27
- "tailwindcss": "3.3.3",
28
- "typescript": "5.3.3"
29
- },
30
- "devDependencies": {
31
- "@commitlint/cli": "17.6.7",
32
- "@commitlint/config-conventional": "17.6.7",
33
- "@commitlint/cz-commitlint": "17.6.7",
34
- "commitizen": "4.3.0",
35
- "eslint-plugin-import": "2.29.1",
36
- "eslint-plugin-prettier": "5.1.3",
37
- "husky": "8.0.3",
38
- "prettier": "3.2.5",
39
- "stylelint": "16.2.1",
40
- "stylelint-config-standard": "36.0.0"
41
- },
42
- "config": {
43
- "commitizen": {
44
- "path": "@commitlint/cz-commitlint"
45
- }
46
- }
47
- }
1
+ {
2
+ "name": "next",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "prepare": "husky install",
7
+ "dev": "next dev",
8
+ "build": "next build",
9
+ "start": "next start",
10
+ "lint": "next lint",
11
+ "format": "prettier --write \"{app,components,pages,domain,providers}/**/*.{ts,js,tsx,jsx,css,scss,less}\" \"./package.json\"",
12
+ "cz": "cz",
13
+ "push": "npm run commit && git push",
14
+ "commit": "git add . && npm run cz"
15
+ },
16
+ "dependencies": {
17
+ "@types/node": "20.4.2",
18
+ "@types/react": "18.2.15",
19
+ "@types/react-dom": "18.2.7",
20
+ "autoprefixer": "10.4.14",
21
+ "eslint": "8.56.0",
22
+ "eslint-config-next": "14.1.0",
23
+ "next": "13.4.10",
24
+ "postcss": "8.4.35",
25
+ "react": "18.2.0",
26
+ "react-dom": "18.2.0",
27
+ "tailwindcss": "3.4.3",
28
+ "typescript": "5.3.3"
29
+ },
30
+ "devDependencies": {
31
+ "@commitlint/cli": "17.6.7",
32
+ "@commitlint/config-conventional": "17.6.7",
33
+ "@commitlint/cz-commitlint": "17.6.7",
34
+ "commitizen": "4.3.0",
35
+ "eslint-plugin-import": "2.29.1",
36
+ "eslint-plugin-prettier": "5.1.3",
37
+ "husky": "8.0.3",
38
+ "prettier": "3.2.5",
39
+ "stylelint": "16.2.1",
40
+ "stylelint-config-standard": "36.0.0"
41
+ },
42
+ "config": {
43
+ "commitizen": {
44
+ "path": "@commitlint/cz-commitlint"
45
+ }
46
+ }
47
+ }
@@ -6,7 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Vite + React + TS</title>
8
8
  </head>
9
- <body>
9
+ <body id="my-app">
10
10
  <div id="root"></div>
11
11
  <script type="module" src="/main.tsx"></script>
12
12
  </body>
@@ -63,7 +63,7 @@
63
63
  "rollup-plugin-visualizer": "5.9.2",
64
64
  "stylelint": "16.2.1",
65
65
  "stylelint-config-standard-scss": "13.0.0",
66
- "tailwindcss": "3.3.1",
66
+ "tailwindcss": "3.4.3",
67
67
  "typescript": "5.3.3",
68
68
  "vite": "4.5.2",
69
69
  "vite-plugin-mock-dev-server": "1.4.7",
@@ -1,6 +1,6 @@
1
1
  /** @type {import('tailwindcss').Config} */
2
2
  module.exports = {
3
- important: '#root',
3
+ important: '#my-app',
4
4
  content: [
5
5
  './index.html',
6
6
  './main.tsx',
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
@@ -6,7 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>webpack5 + React + TS</title>
8
8
  </head>
9
- <body>
9
+ <body id="my-app">
10
10
  <div id="root"></div>
11
11
  </body>
12
12
  </html>
@@ -29,7 +29,7 @@
29
29
  "react-dom": "18.3.1",
30
30
  "react-router-dom": "6.14.0",
31
31
  "react-use": "17.5.0",
32
- "tailwindcss": "3.4.1",
32
+ "tailwindcss": "3.4.3",
33
33
  "zustand": "4.4.1"
34
34
  },
35
35
  "devDependencies": {
@@ -1,6 +1,6 @@
1
1
  /** @type {import('tailwindcss').Config} */
2
2
  module.exports = {
3
- important: '#root',
3
+ important: '#my-app',
4
4
  content: [
5
5
  './index.html',
6
6
  './main.tsx',
@@ -1,51 +1,51 @@
1
- {
2
- "name": "vite-template-solid",
3
- "version": "0.0.0",
4
- "description": "",
5
- "scripts": {
6
- "prepare": "husky install",
7
- "start": "vite",
8
- "dev": "vite",
9
- "build": "vite build",
10
- "serve": "vite preview",
11
- "up:vite": "pnpm up vite @vitejs/* -L",
12
- "format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,css,scss,less}\" \"./package.json\"",
13
- "lint": "eslint ./src/**/*.{tsx,ts} && stylelint ./src/**/*.{css,scss,less}",
14
- "lint:fix": "eslint ./src/**/*.{tsx,ts} --fix && stylelint ./src/**/*.{css,scss,less} --fix",
15
- "test:watchs": "jest --watch",
16
- "test": "jest",
17
- "test:coverage": "jest --silent --watchAll=false --coverage",
18
- "cz": "cz",
19
- "push": "npm run commit && git push",
20
- "commit": "git add . && npm run cz"
21
- },
22
- "license": "MIT",
23
- "devDependencies": {
24
- "@commitlint/cli": "17.6.3",
25
- "@commitlint/config-conventional": "17.6.3",
26
- "@commitlint/cz-commitlint": "17.5.0",
27
- "autoprefixer": "10.4.14",
28
- "commitizen": "4.3.0",
29
- "cssnano": "6.0.0",
30
- "inquirer": "8.0.0",
31
- "postcss": "8.4.35",
32
- "postcss-import": "16.0.1",
33
- "postcss-nesting": "12.0.3",
34
- "prettier": "3.2.5",
35
- "stylelint": "16.2.1",
36
- "stylelint-config-standard-scss": "13.0.0",
37
- "tailwindcss": "3.3.2",
38
- "typescript": "5.3.3",
39
- "vite": "4.5.2",
40
- "vite-plugin-solid": "2.10.1"
41
- },
42
- "dependencies": {
43
- "@solidjs/router": "0.8.2",
44
- "solid-js": "1.7.5"
45
- },
46
- "config": {
47
- "commitizen": {
48
- "path": "@commitlint/cz-commitlint"
49
- }
50
- }
51
- }
1
+ {
2
+ "name": "vite-template-solid",
3
+ "version": "0.0.0",
4
+ "description": "",
5
+ "scripts": {
6
+ "prepare": "husky install",
7
+ "start": "vite",
8
+ "dev": "vite",
9
+ "build": "vite build",
10
+ "serve": "vite preview",
11
+ "up:vite": "pnpm up vite @vitejs/* -L",
12
+ "format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,css,scss,less}\" \"./package.json\"",
13
+ "lint": "eslint ./src/**/*.{tsx,ts} && stylelint ./src/**/*.{css,scss,less}",
14
+ "lint:fix": "eslint ./src/**/*.{tsx,ts} --fix && stylelint ./src/**/*.{css,scss,less} --fix",
15
+ "test:watchs": "jest --watch",
16
+ "test": "jest",
17
+ "test:coverage": "jest --silent --watchAll=false --coverage",
18
+ "cz": "cz",
19
+ "push": "npm run commit && git push",
20
+ "commit": "git add . && npm run cz"
21
+ },
22
+ "license": "MIT",
23
+ "devDependencies": {
24
+ "@commitlint/cli": "17.6.3",
25
+ "@commitlint/config-conventional": "17.6.3",
26
+ "@commitlint/cz-commitlint": "17.5.0",
27
+ "autoprefixer": "10.4.14",
28
+ "commitizen": "4.3.0",
29
+ "cssnano": "6.0.0",
30
+ "inquirer": "8.0.0",
31
+ "postcss": "8.4.35",
32
+ "postcss-import": "16.0.1",
33
+ "postcss-nesting": "12.0.3",
34
+ "prettier": "3.2.5",
35
+ "stylelint": "16.2.1",
36
+ "stylelint-config-standard-scss": "13.0.0",
37
+ "tailwindcss": "3.4.3",
38
+ "typescript": "5.3.3",
39
+ "vite": "4.5.2",
40
+ "vite-plugin-solid": "2.10.1"
41
+ },
42
+ "dependencies": {
43
+ "@solidjs/router": "0.8.2",
44
+ "solid-js": "1.7.5"
45
+ },
46
+ "config": {
47
+ "commitizen": {
48
+ "path": "@commitlint/cz-commitlint"
49
+ }
50
+ }
51
+ }
@@ -7,7 +7,7 @@
7
7
  <title>Vite + Vue + TS</title>
8
8
  </head>
9
9
  <body>
10
- <div id="app"></div>
10
+ <div id="my-app"></div>
11
11
  <script type="module" src="/main.ts"></script>
12
12
  </body>
13
13
  </html>
@@ -1,5 +1,6 @@
1
1
  /** @type {import('tailwindcss').Config} */
2
2
  module.exports = {
3
+ important: '#my-app',
3
4
  content: [
4
5
  './index.html',
5
6
  './app.vue',
@@ -62,7 +62,7 @@
62
62
  "sass": "1.63.4",
63
63
  "stylelint": "16.2.1",
64
64
  "stylelint-config-standard-scss": "13.0.0",
65
- "tailwindcss": "3.3.7",
65
+ "tailwindcss": "3.4.3",
66
66
  "typescript": "5.3.3",
67
67
  "vite": "4.5.2",
68
68
  "vite-plugin-stylelint": "5.3.1",