jinrai 1.0.2 → 1.0.4

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.
@@ -0,0 +1,21 @@
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Debug Vitest",
9
+ "type": "node",
10
+ "request": "launch",
11
+ "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs",
12
+ "args": [],
13
+ "console": "integratedTerminal",
14
+ "internalConsoleOptions": "neverOpen",
15
+ "skipFiles": ["<node_internals>/**"],
16
+ "env": {
17
+ "NODE_ENV": "test"
18
+ }
19
+ }
20
+ ]
21
+ }
package/index.html CHANGED
@@ -1,15 +1,12 @@
1
1
  <!doctype html>
2
2
  <html lang="ru">
3
-
4
- <head>
5
- <meta charset="UTF-8" />
6
- <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
7
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
- @META
9
- @DATA
10
- @ASSETS
11
- </head>
12
-
13
- <body>
14
- <div id="root">@ROOT</div>
15
- </body>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <!--app-head-->
8
+ </head>
9
+ <body>
10
+ <div id="root"><!--app-html--></div>
11
+ </body>
12
+ </html>