Skip to content

Commit 191cf10

Browse files
committed
chore: resolved build problems
1 parent 6c05911 commit 191cf10

File tree

10 files changed

+844
-702
lines changed

10 files changed

+844
-702
lines changed

packages/common/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": ["//"],
44
"tasks": {
55
"build-lib_": {
6-
"dependsOn": []
6+
"dependsOn": ["@alexaegis/vite#build-lib_"]
77
},
88
"test_": {
99
"dependsOn": ["@alexaegis/coverage-tools#build-lib_"]

packages/coverage-tools/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
"type": "module",
2020
"publishConfig": {
2121
"access": "public",
22-
"bin": {
23-
"merge-workspace-lcov-reports": "./dist/bin/merge-workspace-lcov-reports.js"
24-
},
2522
"exports": {
2623
".": {
2724
"types": "./dist/index.d.ts",
@@ -31,6 +28,9 @@
3128
},
3229
"./package.json": "./package.json",
3330
"./readme": "./readme.md"
31+
},
32+
"bin": {
33+
"merge-workspace-lcov-reports": "./dist/bin/merge-workspace-lcov-reports.js"
3434
}
3535
},
3636
"files": [
@@ -69,7 +69,7 @@
6969
"./readme": "./readme.md"
7070
},
7171
"bin": {
72-
"merge-workspace-lcov-reports": "./shims/merge-workspace-lcov-reports.js"
72+
"merge-workspace-lcov-reports": "./dist/bin/merge-workspace-lcov-reports.js"
7373
},
7474
"dependencies": {
7575
"@alexaegis/common": "workspace:^",

packages/coverage-tools/shims/merge-workspace-lcov-reports.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/eslint-config-core/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const commonIgnores: string[] = [
1111
'**/vite.config.ts.*',
1212
'**/vitest.config.ts.*',
1313
'**/.vitepress',
14-
'**/shims',
1514
'**/typedoc',
1615
'**/.svelte-kit',
1716
'**/.vercel',
@@ -20,7 +19,6 @@ const commonIgnores: string[] = [
2019
'**/coverage',
2120
'**/.turbo',
2221
'**/tmp',
23-
'**/shims',
2422
];
2523

2624
const ignoreConfig: TSESLint.FlatConfig.Config = {

packages/lint-staged-config/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const markdownCommand = 'remark --frail --no-stdout --silently-ignore';
1313
/**
1414
* Peek
1515
* ```js
16-
* '!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)': tsc,
17-
* '!(shims)/*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand],
16+
* '*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)': tsc,
17+
* '*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand],
1818
* '*.css': ['stylelint', prettierCommand],
1919
* '*.scss': ['stylelint --customSyntax=postcss-scss', prettierCommand],
2020
* '*.(html|svelte|vue|astro|xml|php)': ['stylelint --customSyntax=postcss-html'],
@@ -39,15 +39,15 @@ const markdownCommand = 'remark --frail --no-stdout --silently-ignore';
3939
* ```
4040
*/
4141
export const lintStagedConfig: Configuration = {
42-
'**/!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)': (
42+
'**/*.(ts|js|cts|cjs|mts|mjs|jsx|tsx|tsconfig*.json)?(x)': (
4343
filenames: readonly string[],
4444
): string[] => {
4545
const groups = groupByCommonNearestFile(filenames as string[], 'tsconfig.json');
4646
return Object.keys(groups).map(
4747
(tsRoot) => `${tscCommand} --project ${join(tsRoot, 'tsconfig.json')}`,
4848
);
4949
},
50-
'**/!(shims)/*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand],
50+
'**/*.(ts|js|cts|cjs|mts|mjs)': [eslintSingleFileCommand, prettierCommand],
5151
'*.css': ['stylelint', prettierCommand],
5252
'*.scss': ['stylelint --customSyntax=postcss-scss', prettierCommand],
5353
'*.(html|svelte|vue|astro|xml|php)': ['stylelint --customSyntax=postcss-html'],

packages/match/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": ["//"],
44
"tasks": {
55
"build-lib_": {
6-
"dependsOn": []
6+
"dependsOn": ["@alexaegis/vite#build-lib_"]
77
},
88
"test_": {
99
"dependsOn": ["@alexaegis/coverage-tools#build-lib_"]

packages/nuke/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
"type": "module",
1818
"publishConfig": {
1919
"access": "public",
20-
"bin": {
21-
"nuke": "./dist/bin/nuke.js"
22-
},
2320
"exports": {
2421
".": {
2522
"types": "./dist/index.d.ts",
@@ -29,6 +26,9 @@
2926
},
3027
"./package.json": "./package.json",
3128
"./readme": "./readme.md"
29+
},
30+
"bin": {
31+
"nuke": "./dist/bin/nuke.js"
3232
}
3333
},
3434
"files": [
@@ -67,7 +67,7 @@
6767
"./readme": "./readme.md"
6868
},
6969
"bin": {
70-
"nuke": "./shims/nuke.js"
70+
"nuke": "./dist/bin/nuke.js"
7171
},
7272
"dependencies": {
7373
"@alexaegis/cli-tools": "workspace:^",

packages/nuke/shims/nuke.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/predicate/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": ["//"],
44
"tasks": {
55
"build-lib_": {
6-
"dependsOn": []
6+
"dependsOn": ["@alexaegis/vite#build-lib_"]
77
},
88
"test_": {
99
"dependsOn": ["@alexaegis/coverage-tools#build-lib_"]

0 commit comments

Comments
 (0)