Skip to content

Commit 34555c7

Browse files
init
1 parent 3f11478 commit 34555c7

File tree

7 files changed

+666
-775
lines changed

7 files changed

+666
-775
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"engines": {
77
"node": "20.x"
88
},
9-
"packageManager": "pnpm@9.10.0",
9+
"packageManager": "pnpm@9.14.2",
1010
"scripts": {
1111
"preinstall": "npx only-allow pnpm",
1212
"dev": "turbo dev",
@@ -26,9 +26,9 @@
2626
"release": "pnpm build:release && changeset version && changeset publish"
2727
},
2828
"devDependencies": {
29-
"@changesets/cli": "^2.27.9",
30-
"prettier": "^3.3.3",
31-
"turbo": "^2.2.3",
32-
"typescript": "^5.5.4"
29+
"@changesets/cli": "^2.27.10",
30+
"prettier": "^3.4.1",
31+
"turbo": "^2.3.3",
32+
"typescript": "^5.7.2"
3333
}
3434
}

packages/internal-eslint-config/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"tsc:print": "npx tsc --showConfig"
1212
},
1313
"devDependencies": {
14-
"@eslint/js": "^9.13.0",
15-
"eslint": "^9.13.0",
14+
"@eslint/js": "^9.15.0",
15+
"eslint": "^9.15.0",
1616
"eslint-import-resolver-typescript": "^3.6.3",
1717
"eslint-plugin-import": "^2.31.0",
18-
"eslint-plugin-perfectionist": "^3.9.1",
18+
"eslint-plugin-perfectionist": "^4.1.2",
1919
"eslint-plugin-react": "^7.37.2",
2020
"eslint-plugin-react-hooks": "5.0.0",
2121
"eslint-plugin-unused-imports": "^4.1.4",
22-
"globals": "^15.11.0",
23-
"typescript": "^5.5.4",
24-
"typescript-eslint": "^8.12.2"
22+
"globals": "^15.12.0",
23+
"typescript": "^5.7.2",
24+
"typescript-eslint": "^8.16.0"
2525
}
2626
}

packages/internal-eslint-config/typescript.mjs

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const importRules = () => ({
5858
'import/newline-after-import': 2,
5959
'import/no-named-as-default-member': 0,
6060
'import/no-cycle': [
61-
2,
61+
0, // disabled if slow
6262
{ maxDepth: '∞', ignoreExternal: false, allowUnsafeDynamicCyclicDependency: false },
6363
],
6464
});
@@ -111,7 +111,7 @@ const sortImportsRules = () => {
111111
environment: 'node',
112112
maxLineLength: undefined,
113113
newlinesBetween: 'always',
114-
internalPattern: ['src/**'],
114+
internalPattern: ['^src/.+'],
115115
groups: [
116116
'style',
117117
'side-effect',
@@ -133,14 +133,14 @@ const sortImportsRules = () => {
133133
],
134134
customGroups: {
135135
value: {
136-
[customGroups.mui]: '@mui/**',
137-
[customGroups.auth]: 'src/auth/**',
138-
[customGroups.hooks]: 'src/hooks/**',
139-
[customGroups.utils]: 'src/utils/**',
140-
[customGroups.types]: 'src/types/**',
141-
[customGroups.routes]: 'src/routes/**',
142-
[customGroups.sections]: 'src/sections/**',
143-
[customGroups.components]: 'src/components/**',
136+
[customGroups.mui]: ['^@mui/.+'],
137+
[customGroups.auth]: ['^src/auth/.+'],
138+
[customGroups.hooks]: ['^src/hooks/.+'],
139+
[customGroups.utils]: ['^src/utils/.+'],
140+
[customGroups.types]: ['^src/types/.+'],
141+
[customGroups.routes]: ['^src/routes/.+'],
142+
[customGroups.sections]: ['^src/sections/.+'],
143+
[customGroups.components]: ['^src/components/.+'],
144144
},
145145
},
146146
},
@@ -179,12 +179,8 @@ export const customConfig = {
179179
// ----------------------------------------------------------------------
180180

181181
export default [
182-
{
183-
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
184-
},
185-
{
186-
ignores: ['*', '!src/', 'eslint.config.*'],
187-
},
182+
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
183+
{ ignores: ['*', '!src/', 'eslint.config.*'] },
188184
{
189185
languageOptions: {
190186
globals: { ...globals.browser, ...globals.node },

packages/minimal-shared/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @minimals/hooks
1+
# minimal-shared
22

33
## 1.0.0
44

packages/minimal-shared/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "minimal-shared",
33
"author": "Minimals",
4-
"version": "0.0.6",
4+
"version": "1.0.0",
55
"description": "Shared hooks and utils used by Mnimal UI and Zone UI.",
66
"keywords": [
77
"typescript",
@@ -65,13 +65,13 @@
6565
"tsc:print": "npx tsc --showConfig"
6666
},
6767
"dependencies": {
68-
"es-toolkit": "^1.26.1"
68+
"es-toolkit": "^1.27.0"
6969
},
7070
"devDependencies": {
7171
"@testing-library/jest-dom": "^6.6.3",
7272
"@testing-library/react": "^16.0.1",
7373
"@types/fs-extra": "^11.0.4",
74-
"@types/node": "^22.8.6",
74+
"@types/node": "^22.10.0",
7575
"@types/react": "18.3.12",
7676
"chalk": "^5.3.0",
7777
"fast-glob": "^3.3.2",
@@ -82,10 +82,10 @@
8282
"jsdom": "^25.0.1",
8383
"react": "^18.3.1",
8484
"tsup": "^8.3.5",
85-
"typescript": "^5.5.4",
86-
"vitest": "^2.1.4"
85+
"typescript": "^5.7.2",
86+
"vitest": "^2.1.6"
8787
},
8888
"peerDependencies": {
89-
"react": "^17 || ^18"
89+
"react": "^18"
9090
}
9191
}

0 commit comments

Comments
 (0)