From d2ddf18bcef03ebaf3b03d16999fdc91cce77448 Mon Sep 17 00:00:00 2001 From: Viraj-10 Date: Tue, 17 Oct 2023 16:35:07 +0530 Subject: [PATCH 1/3] fix: changeset build issue --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index be1075f10..52f52d998 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "scripts": { "test": "bash ./scripts/test.sh", "dev": "turbo run dev", - "build": "turbo run build --filter=@gluestack-style* --no-cache", + "build": "turbo run build --filter=@gluestack-style/react --no-cache && yarn build:rest", + "build:rest": "turbo run build --filter=@gluestack-style* --no-cache --ignore=@gluestack-style/react", "clean": "turbo run clean && rm -rf node_modules", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore", "release": "changeset publish", From c696c98d0db3c2f1c125cd893b65ee4c360aa0cb Mon Sep 17 00:00:00 2001 From: Viraj-10 Date: Tue, 17 Oct 2023 16:50:20 +0530 Subject: [PATCH 2/3] fix: changeset build issue --- .changeset/config.json | 8 +------- example/storybook/package.json | 2 +- packages/benchmark-next/package.json | 4 ++-- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 53769b98b..9aa735316 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,11 +7,5 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [ - "expo-app", - "babel-gluestack-style-resolver-example", - "example-storybook", - "next-example-styled", - "benchmark-next" - ] + "ignore": ["benchmark-next", "@gluestack/ui-storybook"] } diff --git a/example/storybook/package.json b/example/storybook/package.json index 04fb7dd3a..382bf5971 100644 --- a/example/storybook/package.json +++ b/example/storybook/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "@expo/html-elements": "^0.4.2", - "@gluestack-style/react": "^0.2.11-alpha.0", + "@gluestack-style/react": "1.0.6", "@gluestack-ui/actionsheet": "^0.2.16", "@gluestack-ui/alert-dialog": "^0.1.14", "@gluestack-ui/button": "^0.1.23", diff --git a/packages/benchmark-next/package.json b/packages/benchmark-next/package.json index 02724489f..28209bd18 100644 --- a/packages/benchmark-next/package.json +++ b/packages/benchmark-next/package.json @@ -25,8 +25,8 @@ "styled-components": "^5.3.0" }, "devDependencies": { - "@gluestack-style/babel-plugin-styled-resolver": "^0.1.6", - "@gluestack-style/react": "^0.1.33", + "@gluestack-style/babel-plugin-styled-resolver": "1.0.0", + "@gluestack-style/react": "1.0.6", "@emotion/styled": "^11.3.0", "@expo/next-adapter": "^4.0.13", "@types/react": "17.0.1", From 36b1418fdd8a7d83bb907175833126d3e1fa94ff Mon Sep 17 00:00:00 2001 From: Viraj-10 Date: Tue, 17 Oct 2023 16:57:29 +0530 Subject: [PATCH 3/3] fix: commenting test workflow --- .github/workflows/{testing.yml => testing.yml_old} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{testing.yml => testing.yml_old} (100%) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml_old similarity index 100% rename from .github/workflows/testing.yml rename to .github/workflows/testing.yml_old