create-packer 1.31.1 → 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.1",
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>",
@@ -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>
@@ -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>
@@ -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',
@@ -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',