create-sprinkles 0.3.1 → 0.3.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/assets/favicon.ico +0 -0
- package/dist/bin.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -1
|
Binary file
|
package/dist/bin.mjs
CHANGED
|
@@ -60,7 +60,7 @@ const options = {
|
|
|
60
60
|
};
|
|
61
61
|
//#endregion
|
|
62
62
|
//#region src/scripts.ts
|
|
63
|
-
const faviconBase64 = readFileSync(path.join(import.meta.dirname, "assets/favicon.ico")).toString("base64");
|
|
63
|
+
const faviconBase64 = readFileSync(path.join(import.meta.dirname, "../assets/favicon.ico")).toString("base64");
|
|
64
64
|
function buildDependencyCommands(context) {
|
|
65
65
|
const commands = [];
|
|
66
66
|
commands.push("vp add -D @types/node @typescript/native-preview");
|
package/dist/index.mjs
CHANGED
|
@@ -58,7 +58,7 @@ const options = {
|
|
|
58
58
|
};
|
|
59
59
|
//#endregion
|
|
60
60
|
//#region src/scripts.ts
|
|
61
|
-
const faviconBase64 = readFileSync(path.join(import.meta.dirname, "assets/favicon.ico")).toString("base64");
|
|
61
|
+
const faviconBase64 = readFileSync(path.join(import.meta.dirname, "../assets/favicon.ico")).toString("base64");
|
|
62
62
|
function buildDependencyCommands(context) {
|
|
63
63
|
const commands = [];
|
|
64
64
|
commands.push("vp add -D @types/node @typescript/native-preview");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-sprinkles",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Get started with development by creating projects from templates quickly.",
|
|
5
5
|
"homepage": "https://github.com/withsprinkles/create-sprinkles#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"create-sprinkles": "dist/bin.mjs"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
|
+
"assets",
|
|
19
20
|
"dist",
|
|
20
21
|
"templates"
|
|
21
22
|
],
|