-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switch to pnpm * chore(dependencies): updated changesets for modified dependencies * add missing deps Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d9a9c84
commit 556feba
Showing
18 changed files
with
15,803 additions
and
14,397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@theguild/components": patch | ||
--- | ||
dependencies updates: | ||
- Updated dependency [`@next/[email protected]` ↗︎](https://www.npmjs.com/package/@next/bundle-analyzer/v/12.3.2) (from `^12.3.1`, in `dependencies`) | ||
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/unist-util-visit/v/4.1.1) (from `^4.1.1`, in `dependencies`) | ||
- Added dependency [`@headlessui/react@^1.7.3` ↗︎](https://www.npmjs.com/package/@headlessui/react/v/1.7.3) (to `dependencies`) | ||
- Added dependency [`semver@^7.3.8` ↗︎](https://www.npmjs.com/package/semver/v/7.3.8) (to `dependencies`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,33 +13,27 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: pnpm/[email protected] | ||
with: | ||
version: 7 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- uses: actions/cache@v3 | ||
name: Cache node_modules | ||
with: | ||
path: '**/node_modules' | ||
key: ${{runner.os}}-yarn-${{hashFiles('**/yarn.lock')}}-v2 | ||
restore-keys: | | ||
${{runner.os}}-yarn-v2 | ||
cache: pnpm | ||
|
||
- name: Install Dependencies | ||
run: yarn | ||
run: pnpm i | ||
|
||
- name: Build | ||
run: yarn build | ||
run: pnpm build | ||
|
||
- name: Lint Prettier | ||
run: yarn lint:prettier | ||
run: pnpm lint:prettier | ||
|
||
- name: Lint ESLint | ||
run: yarn lint | ||
run: pnpm lint | ||
|
||
- name: Build Storybook | ||
run: yarn build-storybook | ||
|
||
- name: Build Next.js | ||
run: yarn workspace website build | ||
run: pnpm build-storybook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
shell-emulator=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ storybook-static/ | |
.next/ | ||
.husky/_/ | ||
.changeset/*.md | ||
.bob/ | ||
website/out/ | ||
pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,17 @@ | |
"build": "turbo run build", | ||
"build:css": "NODE_ENV=production tailwindcss --config tailwind.config.cjs --postcss --output packages/components/style.css", | ||
"build-storybook": "storybook build", | ||
"next:build": "cd website && yarn build && yarn start", | ||
"prettier": "prettier --write --list-different .", | ||
"lint:prettier": "prettier --check .", | ||
"lint": "eslint --ignore-path .gitignore .", | ||
"type-check": "tsc", | ||
"type-check:watch": "tsc --watch", | ||
"prepare": "husky install", | ||
"prerelease": "yarn build", | ||
"prerelease": "pnpm build", | ||
"release": "changeset publish" | ||
}, | ||
"devDependencies": { | ||
"@algolia/autocomplete-theme-classic": "1.7.2", | ||
"@changesets/changelog-github": "0.4.7", | ||
"@changesets/cli": "2.25.2", | ||
"@storybook/addon-essentials": "7.0.0-alpha.47", | ||
|
@@ -36,6 +36,7 @@ | |
"@typescript-eslint/eslint-plugin": "5.42.0", | ||
"@typescript-eslint/parser": "5.42.0", | ||
"concurrently": "7.5.0", | ||
"css-loader": "6.7.1", | ||
"eslint": "8.26.0", | ||
"eslint-plugin-react": "7.31.10", | ||
"eslint-plugin-react-hooks": "4.6.0", | ||
|
@@ -44,6 +45,8 @@ | |
"husky": "8.0.1", | ||
"lint-staged": "13.0.3", | ||
"next-themes": "0.2.1", | ||
"postcss": "8.4.18", | ||
"postcss-loader": "7.0.1", | ||
"prettier": "2.7.1", | ||
"prettier-plugin-tailwindcss": "0.1.13", | ||
"pretty-quick": "3.1.3", | ||
|
@@ -53,17 +56,13 @@ | |
"storybook-addon-next": "1.6.9", | ||
"storybook-addon-swc": "1.1.9", | ||
"storybook-dark-mode": "1.1.2", | ||
"style-loader": "3.3.1", | ||
"tailwindcss": "3.2.1", | ||
"tsconfig-paths-webpack-plugin": "4.0.0", | ||
"tsup": "6.3.0", | ||
"turbo": "1.6.2", | ||
"typescript": "4.8.4" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*", | ||
"website" | ||
] | ||
}, | ||
"browserslist": [ | ||
"> 1%" | ||
], | ||
|
@@ -76,15 +75,10 @@ | |
"*.{js,mjs,cjs,ts,tsx,md,json,yml,yaml}": [ | ||
"pretty-quick --staged", | ||
"eslint" | ||
], | ||
"yarn.lock": [ | ||
"npx yarn-deduplicate" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"resolutions": { | ||
"@mdx-js/react": "2.1.5" | ||
} | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
556feba
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
the-guild-components-storybook – ./
the-guild-components-storybook-theguild.vercel.app
the-guild-components-storybook-git-main-theguild.vercel.app
the-guild-components-storybook.vercel.app