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.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +12 -0
- package/dist/template/components/HelloWorld/index.tsx +3 -0
- package/dist/template/package.json +3 -3
- package/dist/template/tsconfig.json +1 -1
- package/package.json +1 -1
- package/template/components/HelloWorld/index.tsx +3 -0
- package/template/package-lock.json +3030 -0
- package/template/package.json +3 -3
- package/template/tsconfig.json +1 -1
- package/tsup.config.ts +4 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> create-ollie-shop@0.1
|
|
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
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,4 +10,4 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[32mESM[39m [1mdist/index.js [22m[32m6.28 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m ⚡️ 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/
|
|
7
|
-
"@ollie-shop/
|
|
6
|
+
"@ollie-shop/previewjs": "latest",
|
|
7
|
+
"@ollie-shop/sdk": "latest",
|
|
8
8
|
"@types/node": "^22.14.0",
|
|
9
|
-
"@types/react": "^19.1.
|
|
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,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 }) {
|