create-ollie-shop 0.1.2 → 0.2.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > create-ollie-shop@0.1.2 build /home/runner/work/ollie-shop/ollie-shop/packages/create-ollie-shop
2
+ > create-ollie-shop@0.2.1 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 222ms
13
+ ESM ⚡️ Build success in 188ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # create-ollie-shop
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 984f262: update ollie-shop dependecies version
8
+
9
+ ## 0.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 9177879: Add `.gitignore` generation, update previewjs, fix missing React import
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
@@ -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/sdk": "^0.1.0",
7
- "@ollie-shop/previewjs": "^0.1.0",
6
+ "@ollie-shop/previewjs": "latest",
7
+ "@ollie-shop/sdk": "latest",
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",
@@ -4,7 +4,7 @@
4
4
  "module": "ES2022",
5
5
  "target": "ES2022",
6
6
  "moduleResolution": "Bundler",
7
- "jsx": "react-jsx",
7
+ "jsx": "preserve",
8
8
  "strict": true,
9
9
  "declaration": true,
10
10
  "noUncheckedIndexedAccess": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ollie-shop",
3
- "version": "0.1.2",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 }) {