Skip to content

Commit e6f02f3

Browse files
author
zbeyens
committed
upgrade
1 parent 44b7968 commit e6f02f3

File tree

8 files changed

+454
-1189
lines changed

8 files changed

+454
-1189
lines changed

.github/CODEOWNERS

-15
This file was deleted.

.github/FUNDING.yml

-1
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
**Description**
22

3-
3+
See changesets.
44

55
<!-- A clear and concise description of what this pull request solves. -->
66
<!-- If your change is non-trivial, please include a description of how the
77
new logic works, and why you decided to solve it the way you did. -->
8+
9+
10+
<!-- **Example** -->
11+
12+
13+
14+
<!-- (optional) A sandbox, GIF or video showing the old and new behaviors after this
15+
pullrequest is merged. Or a code sample showing the usage of a new API. -->
16+

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ packages/cli/components
44
**/tsconfig.tsbuildinfo
55

66
.yarn/*
7-
!.yarn/cache
87
!.yarn/patches
9-
!.yarn/plugins
108
!.yarn/releases
9+
!.yarn/plugins
1110
!.yarn/sdks
1211
!.yarn/versions
1312

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# used in tandem with package.json engines section to only use yarn
2+
engine-strict=true

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"build:watch": "ROARR_LOG=true turbowatch ./config/turbowatch.config.ts | roarr",
1111
"brl": "yarn g:brl",
1212
"check:install": "yarn dlx @yarnpkg/doctor@4.0.0-rc.10 --configFileName config/.ncurc.yml packages",
13-
"deps:check": "yarn dlx npm-check-updates@latest --configFileName config/.ncurc.yml --deep --mergeConfig",
14-
"deps:update": "deps:check -u",
13+
"clean:turbo": "rimraf --glob '**/.turbo' '**/turbo-*.log' && turbo daemon clean",
14+
"deps:check": "npx npm-check-updates@latest --configFileName config/ncurc.yml --workspaces --root --mergeConfig",
15+
"deps:update": "npx npm-check-updates@latest --configFileName ncurc.yml -u --workspaces --root --mergeConfig",
1516
"lint": "yarn g:lint",
1617
"lint:fix": "yarn g:lint:fix",
1718
"prerelease": "yarn g:prerelease",
@@ -21,7 +22,7 @@
2122
"g:build": "turbo --filter \"./packages/**\" build --no-daemon",
2223
"g:build:watch": "yarn build:watch",
2324
"g:changeset": "changeset",
24-
"g:clean": "turbo --filter \"./packages/**\" clean --no-daemon",
25+
"g:clean": "yarn clean:turbo && turbo --filter \"./packages/**\" clean --no-daemon",
2526
"g:lint": "turbo --filter \"./packages/**\" lint --no-daemon",
2627
"g:lint:fix": "turbo lint:fix --no-daemon",
2728
"g:prerelease": "yarn build",
@@ -33,7 +34,7 @@
3334
"g:test:covwa": "yarn g:test:cov --watchAll",
3435
"g:test:wa": "yarn g:test --watchAll",
3536
"g:typecheck": "turbo typecheck --no-daemon",
36-
"nuke:node_modules": "rimraf '**/node_modules'",
37+
"nuke:node_modules": "rimraf --glob '**/node_modules'",
3738
"p:brl": "cd $INIT_CWD && barrelsby -d $INIT_CWD/src -D -l all -q -e '.*(fixture|template|spec|__tests__).*'",
3839
"p:brl:below": "cd $INIT_CWD && barrelsby -d $INIT_CWD/src -D -l below -q -e '.*(fixture|template|spec|__tests__).*'",
3940
"p:build": "cd $INIT_CWD && yarn p:tsup",
@@ -105,8 +106,8 @@
105106
"zustand": "^4.4.7"
106107
},
107108
"engines": {
108-
"node": "^14.13.1 || >=16.0.0",
109-
"npm": "please-use-yarn",
110-
"yarn": ">=1.22.0"
109+
"node": ">=18.12.0",
110+
"yarn": ">=1.22.0",
111+
"npm": "please-use-yarn"
111112
}
112113
}

turbo.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3+
"globalDependencies": ["**/.env.*local", "**/tsconfig*.json"],
34
"globalEnv": ["CI", "GITHUB_OAUTH_TOKEN"],
45
"pipeline": {
56
"build": {

0 commit comments

Comments
 (0)