-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Convert to pnpm * Add pnpm to build
- Loading branch information
Showing
13 changed files
with
19,292 additions
and
15,230 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
# Configured by Renovate | ||
fe/package.json | ||
package.json | ||
yarn.lock | ||
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
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,6 @@ | ||
public-hoist-pattern[]="@types*" | ||
public-hoist-pattern[]="*eslint*" | ||
public-hoist-pattern[]="*prettier*" | ||
public-hoist-pattern[]="esbuild" | ||
public-hoist-pattern[]="jest" | ||
public-hoist-pattern[]="tsconfig-seek" |
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 |
---|---|---|
|
@@ -9,3 +9,5 @@ dist-storybook/ | |
dist/ | ||
report/ | ||
# end managed by sku | ||
|
||
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
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 |
---|---|---|
|
@@ -16,23 +16,16 @@ | |
}, | ||
"private": true, | ||
"scripts": { | ||
"fe": "yarn workspace wingman-fe", | ||
"format": "yarn workspaces run format", | ||
"lint": "yarn workspaces run lint", | ||
"stage": "changeset version && yarn format", | ||
"fe": "pnpm --filter wingman-fe", | ||
"format": "pnpm -r format", | ||
"lint": "pnpm -r lint", | ||
"stage": "changeset version && pnpm format", | ||
"release": "changeset publish", | ||
"test": "yarn workspaces run test", | ||
"test:ci": "yarn workspaces run test:ci", | ||
"test": "pnpm -r test", | ||
"test:ci": "pnpm -r test:ci", | ||
"codegen": "graphql-codegen --config codegen.yml", | ||
"deploy": "scripts/deploy" | ||
}, | ||
"version": "0.0.0", | ||
"workspaces": { | ||
"nohoist": [ | ||
"wingman-fe/**" | ||
], | ||
"packages": [ | ||
"fe" | ||
] | ||
} | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.