create-rigg 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -12,8 +12,17 @@ I really like what [VoidZero](https://voidzero.dev) and [Vite+](https://github.c
12
12
  ## Create a new project with rigg
13
13
 
14
14
  ```bash
15
+ # pnpm
15
16
  pnpm create rigg@latest
17
+
18
+ # npm
16
19
  npm create rigg@latest
20
+
21
+ # bun
22
+ bun create rigg@latest
23
+
24
+ # yarn
25
+ yarn create rigg@latest
17
26
  ```
18
27
 
19
28
  ## What you get
package/dist/index.mjs CHANGED
@@ -285,6 +285,7 @@ async function installDependencies(options, targetDir) {
285
285
  }
286
286
  /** Prints the gradient intro. */
287
287
  function showIntro() {
288
+ console.log("");
288
289
  p.intro(pc.bold(gradient("rigg - Node.js projects with a modern toolchain", [[
289
290
  255,
290
291
  255,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rigg",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Create Node.js TypeScript projects using the Vite+ Toolchain - for everything outside the browser.",
5
5
  "keywords": [
6
6
  "backend",
@@ -1,5 +1,5 @@
1
- import { expect, test } from "vitest";
1
+ import { expect, test } from "vitest"
2
2
 
3
3
  test("example", () => {
4
- expect(true).toBe(true);
5
- });
4
+ expect(true).toBe(true)
5
+ })
@@ -1,7 +1,7 @@
1
- import { defineConfig } from "vitest/config";
1
+ import { defineConfig } from "vitest/config"
2
2
 
3
3
  export default defineConfig({
4
4
  test: {
5
5
  slowTestThreshold: 5_000,
6
6
  },
7
- });
7
+ })