Skip to content

Commit 9f1a174

Browse files
authoredMar 9, 2024··
Chore/updates (#980)
* Upgrade lerna Closes #975 * Upgrade prettier Closes #974 * Upgrade workflows for Yarn 4 * Changeset * Upgrade workflows for Yarn 4 * Upgrade workflows for Yarn 4 * Prettier
1 parent 7ecc146 commit 9f1a174

File tree

9 files changed

+101
-107
lines changed

9 files changed

+101
-107
lines changed
 

‎.changeset/twelve-trains-promise.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"simple-git": patch
3+
---
4+
5+
Update build tools and workflows for Yarn 4 compatibility

‎.github/workflows/changesets.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: 18
2020

21-
- run: yarn --frozen-lockfile
21+
- run: yarn install --immutable
2222
- run: yarn build
2323

2424
- uses: changesets/action@v1

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: yarn
2525
- run: node --version
2626
- run: git --version
27-
- run: yarn install --frozen-lockfile
27+
- run: yarn install --immutable
2828
- run: yarn build
2929
- name: Test
3030
env:

‎.github/workflows/quality.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
with:
2020
node-version: 18
2121
cache: yarn
22-
- run: yarn install --frozen-lockfile
22+
- run: yarn install --immutable
2323
- run: yarn prettier --check .

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"dependencies": {
2020
"@changesets/changelog-github": "^0.5.0",
2121
"@changesets/cli": "^2.26.2",
22-
"lerna": "^8.0.1",
23-
"prettier": "^3.0.1"
22+
"lerna": "^8.1.2",
23+
"prettier": "^3.2.5"
2424
},
2525
"packageManager": "yarn@4.1.0"
2626
}

‎packages/test-typescript-consumer/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"baseUrl": ".",
99
"paths": {},
1010
"esModuleInterop": false,
11-
"allowSyntheticDefaultImports": false,
11+
"allowSyntheticDefaultImports": false
1212
},
13-
"files": ["test/ts-default-from-root.spec.ts"],
13+
"files": ["test/ts-default-from-root.spec.ts"]
1414
}

‎packages/test-typescript-esm-consumer/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"moduleResolution": "node16",
66
"noEmit": true,
77
"allowSyntheticDefaultImports": true,
8-
"baseUrl": ".",
8+
"baseUrl": "."
99
// "emitDecoratorMetadata": true,
1010
// "experimentalDecorators": true,
1111
// "forceConsistentCasingInFileNames": true,
@@ -18,5 +18,5 @@
1818
// "sourceMap": true,
1919
// "strictBindCallApply": true,
2020
// "strictNullChecks": false,
21-
},
21+
}
2222
}

‎simple-git/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
"declarationMap": false,
2727
"sourceMap": true,
2828
"paths": {},
29-
"noEmit": true,
29+
"noEmit": true
3030
},
3131
"exclude": ["node_modules"],
3232
"include": [
3333
"src/lib/**/*.ts",
3434
"test/__fixtures__/**/*.ts",
3535
"test/integration/**/*.ts",
3636
"test/unit/**/*.ts",
37-
"typings/index.d.ts",
38-
],
37+
"typings/index.d.ts"
38+
]
3939
}

0 commit comments

Comments
 (0)
Please sign in to comment.