@skirtle/create-vue-lib 0.0.6 → 0.0.7

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/dist/index.cjs CHANGED
@@ -5697,7 +5697,7 @@ var import_picocolors = __toESM(require_picocolors(), 1);
5697
5697
  // package.json
5698
5698
  var package_default = {
5699
5699
  name: "@skirtle/create-vue-lib",
5700
- version: "0.0.6",
5700
+ version: "0.0.7",
5701
5701
  author: "skirtle",
5702
5702
  license: "MIT",
5703
5703
  description: "Create a library using Vue and Vite",
@@ -5710,10 +5710,6 @@ var package_default = {
5710
5710
  },
5711
5711
  funding: "https://github.com/sponsors/skirtles-code",
5712
5712
  type: "module",
5713
- packageManager: "pnpm@9.15.4",
5714
- engines: {
5715
- node: ">=v18.3.0"
5716
- },
5717
5713
  bin: {
5718
5714
  "create-vue-lib": "dist/index.cjs"
5719
5715
  },
@@ -5860,7 +5856,7 @@ async function init() {
5860
5856
  console.log();
5861
5857
  console.log(`Welcome to ${(0, import_picocolors.bold)((0, import_picocolors.green)(package_default.name))} v${(0, import_picocolors.bold)((0, import_picocolors.cyan)(package_default.version))}`);
5862
5858
  console.log();
5863
- console.log(`This tool will help you to scaffold a ${(0, import_picocolors.bgMagenta)((0, import_picocolors.bold)((0, import_picocolors.yellowBright)("Vite")))} project for your ${(0, import_picocolors.bgGreen)((0, import_picocolors.bold)((0, import_picocolors.blue)("Vue")))}-based library.`);
5859
+ console.log(`This tool will help you to scaffold a ${(0, import_picocolors.bold)((0, import_picocolors.magenta)("Vite"))} project for your ${(0, import_picocolors.bold)((0, import_picocolors.green)("Vue"))}-based library.`);
5864
5860
  console.log();
5865
5861
  console.log("It is recommended to use a scoped package name for your library.");
5866
5862
  console.log("e.g. @username/package-name");
@@ -21,8 +21,11 @@ import { ExampleComponent, MyPanel } from '@scopedPackageName@'
21
21
  </template>
22
22
 
23
23
  <style scoped>
24
+ .main {
25
+ max-width: 300px;
26
+ }
27
+
24
28
  .main > * + * {
25
29
  margin-top: 10px;
26
- max-width: 300px;
27
30
  }
28
31
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skirtle/create-vue-lib",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "author": "skirtle",
5
5
  "license": "MIT",
6
6
  "description": "Create a library using Vue and Vite",
@@ -19,9 +19,6 @@
19
19
  },
20
20
  "funding": "https://github.com/sponsors/skirtles-code",
21
21
  "type": "module",
22
- "engines": {
23
- "node": ">=v18.3.0"
24
- },
25
22
  "bin": {
26
23
  "create-vue-lib": "dist/index.cjs"
27
24
  },