create-ollie-shop 0.1.1 → 0.2.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > create-ollie-shop@0.1.1 build /home/runner/work/ollie-shop/ollie-shop/packages/create-ollie-shop
2
+ > create-ollie-shop@0.2.0 build /home/runner/work/ollie-shop/ollie-shop/packages/create-ollie-shop
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,4 +10,4 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  ESM dist/index.js 6.28 KB
13
- ESM ⚡️ Build success in 90ms
13
+ ESM ⚡️ Build success in 125ms
package/CHANGELOG.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # create-ollie-shop
2
2
 
3
- ## 0.1.1
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9177879: Add `.gitignore` generation, update previewjs, fix missing React import
8
+
9
+ ## 0.1.2
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - b6c3baf: Initial release
8
- - Updated dependencies [b6c3baf]
9
- - @ollie-shop/previewjs@0.1.1
13
+ - 906b57d: First Release
@@ -1,3 +1,6 @@
1
+ // biome-ignore lint/correctness/noUnusedImports: React import is required for JSX support in Ollie Shop's current build setup
2
+ import React from "react";
3
+
1
4
  import styles from "./styles.module.css";
2
5
 
3
6
  export default function HelloWorld({ name = "Stranger" }: { name?: string }) {
@@ -3,10 +3,10 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "devDependencies": {
6
+ "@ollie-shop/previewjs": "^0.1.7",
6
7
  "@ollie-shop/sdk": "^0.1.0",
7
- "@ollie-shop/previewjs": "^0.1.0",
8
8
  "@types/node": "^22.14.0",
9
- "@types/react": "^19.1.0",
9
+ "@types/react": "^19.1.8",
10
10
  "@types/react-dom": "^19.1.1",
11
11
  "next": "^15.3.1",
12
12
  "react": "^19.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ollie-shop",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,8 +20,7 @@
20
20
  "commander": "^11.1.0",
21
21
  "fs-extra": "^11.3.0",
22
22
  "prompts": "^2.4.2",
23
- "zod": "^3.24.2",
24
- "@ollie-shop/previewjs": "^0.1.1"
23
+ "zod": "^3.24.2"
25
24
  },
26
25
  "publishConfig": {
27
26
  "access": "public",
@@ -1,3 +1,6 @@
1
+ // biome-ignore lint/correctness/noUnusedImports: React import is required for JSX support in Ollie Shop's current build setup
2
+ import React from "react";
3
+
1
4
  import styles from "./styles.module.css";
2
5
 
3
6
  export default function HelloWorld({ name = "Stranger" }: { name?: string }) {