create-nix-app 1.0.9 → 1.0.11
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 +1 -1
- package/template-nix-ionic/package.json +2 -2
- package/template-vanilla-js/index.html +15 -13
- package/template-vanilla-ts/index.html +13 -13
- package/template-vanilla-ts/package.json +1 -1
- package/template-vite-js/package.json +1 -1
- package/template-vite-ts/package.json +1 -1
package/package.json
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@capacitor/android": "^8.2.0",
|
|
12
12
|
"@capacitor/cli": "^8.2.0",
|
|
13
13
|
"@capacitor/core": "^8.2.0",
|
|
14
|
-
"@deijose/nix-ionic": "^0.3.
|
|
15
|
-
"@deijose/nix-js": "^1.7.
|
|
14
|
+
"@deijose/nix-ionic": "^0.3.3",
|
|
15
|
+
"@deijose/nix-js": "^1.7.9",
|
|
16
16
|
"@ionic/core": "^8.8.1",
|
|
17
17
|
"ionicons": "^8.0.13"
|
|
18
18
|
},
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<link rel="icon" href="/public/favicon.ico">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<title>¡Bienvenido a Nix.js!</title>
|
|
9
|
+
<script type="importmap">
|
|
9
10
|
{
|
|
10
11
|
"imports": {
|
|
11
|
-
"@deijose/nix-js": "https://cdn.jsdelivr.net/npm/@deijose/nix-js@1.7.
|
|
12
|
+
"@deijose/nix-js": "https://cdn.jsdelivr.net/npm/@deijose/nix-js@1.7.9/+esm"
|
|
12
13
|
}
|
|
13
14
|
}
|
|
14
15
|
</script>
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
<link rel="stylesheet" href="./src/style.css">
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div id="app"></div>
|
|
21
|
+
<script type="module" src="./src/main.js"></script>
|
|
22
|
+
</body>
|
|
17
23
|
|
|
18
|
-
<body>
|
|
19
|
-
<div id="app"></div>
|
|
20
|
-
<script type="module" src="./src/main.js"></script>
|
|
21
|
-
</body>
|
|
22
24
|
</html>
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<link rel="icon" href="/public/favicon.ico">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<title>Nix.js Vanilla TS</title>
|
|
9
|
+
<script type="importmap">
|
|
10
10
|
{
|
|
11
11
|
"imports": {
|
|
12
|
-
"@deijose/nix-js": "https://cdn.jsdelivr.net/npm/@deijose/nix-js@1.7.
|
|
12
|
+
"@deijose/nix-js": "https://cdn.jsdelivr.net/npm/@deijose/nix-js@1.7.9/+esm"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
</script>
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
<link rel="stylesheet" href="./src/style.css">
|
|
17
|
+
</head>
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
<body>
|
|
20
|
+
<div id="app"></div>
|
|
21
|
+
<script type="module" src="./dist/main.js"></script>
|
|
22
|
+
</body>
|
|
23
23
|
|
|
24
24
|
</html>
|