Skip to content

Commit c08b298

Browse files
authored
chore: housekeeping, bump all (dev) deps (#329)
1 parent a45370e commit c08b298

File tree

24 files changed

+1200
-1339
lines changed

24 files changed

+1200
-1339
lines changed

.changeset/brave-eagles-wink.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"@1stg/common-config": patch
3+
"@1stg/config": patch
4+
"@1stg/eslint-config": patch
5+
"@1stg/prettier-config": patch
6+
"@1stg/remark-preset": patch
7+
"@1stg/stylelint-config": patch
8+
---
9+
10+
chore: housekeeping, bump all (dev) deps

.changeset/chatty-cherries-sell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@1stg/eslint-config": minor
3+
---
4+
5+
feat: enable `globals` for `jest` and `vitest`, ignore `.type-coverage` and `.vercel`

.changeset/curly-candles-greet.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@1stg/app-config": major
3+
"@1stg/common-config": major
4+
"@1stg/prettier-config": major
5+
---
6+
7+
chore: bump `prettier-plugin-pkg` with different orders for `types` related entries

.codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"node": "18",
2+
"node": "20",
33
"buildCommand": false,
44
"sandboxes": []
55
}

.github/workflows/pkg-pr-new.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ jobs:
2424
- name: Install dependencies
2525
run: yarn --immutable
2626

27-
- run: yarn dlx pkg-pr-new publish --compact './packages/*'
27+
- name: Publish
28+
run: yarn dlx pkg-pr-new publish --compact './packages/*'
File renamed without changes.
File renamed without changes.
File renamed without changes.

.yarnrc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ enableTelemetry: false
22

33
nodeLinker: node-modules
44

5-
npmRegistryServer: 'https://registry.npmmirror.com'
6-
75
plugins:
86
- checksum: 37b2361b1502b2054e6779788c0e9bdd6a90ce49852a8cad2feda79b0614ec94f06fb6e78951f5f95429c610d7934dd077caa47413a0227378a102c55161616d
97
path: .yarn/plugins/plugin-prepare-lifecycle.cjs

eslint.config.mjs renamed to eslint.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// @ts-check
22

3+
import globals from 'globals'
34
import tseslint from 'typescript-eslint'
45

56
import recommended from '@1stg/eslint-config'
@@ -8,7 +9,13 @@ export default tseslint.config([
89
recommended,
910
{
1011
rules: {
11-
'react/react-in-jsx-scope': 'off',
12+
'@eslint-react/jsx-uses-react': 'off',
13+
},
14+
},
15+
{
16+
files: ['packages/{babel-preset,browserslist-config,postcss-config}/*.js'],
17+
languageOptions: {
18+
globals: globals.node,
1219
},
1320
},
1421
{

0 commit comments

Comments
 (0)