Skip to content

Commit 94bbc56

Browse files
turbo pipeline
1 parent d49895a commit 94bbc56

File tree

41 files changed

+128
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+128
-94
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
packages/*/coverage/
6666
packages/*/.tmp/
6767
retention-days: 7
68+
- run: npm run typecheck
6869
- run: npm run lint
6970
- name: Validate documentation
7071
run: npm run validate:links

apps/demos/destination/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"build": "tsup --silent",
2121
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
2222
"dev": "jest --watchAll --colors",
23-
"lint": "tsc && eslint \"**/*.ts*\"",
23+
"typecheck": "tsc --noEmit",
24+
"lint": "eslint \"**/*.ts*\"",
2425
"test": "jest"
2526
},
2627
"dependencies": {

apps/demos/react/jest.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export default {
66
testMatch: ['<rootDir>/src/**/*.test.{ts,tsx}'],
77
setupFilesAfterEnv: ['<rootDir>/src/setupTests.ts'],
88
moduleNameMapper: {
9+
...webConfig.moduleNameMapper,
910
'^@/(.*)$': '<rootDir>/src/$1',
1011
},
1112
};

apps/demos/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"test:watch": "jest --watchAll --colors",
1111
"preview": "vite preview",
1212
"start": "vite --host",
13-
"lint": "tsc --noEmit && eslint \"**/*.ts*\"",
13+
"lint": "eslint \"**/*.ts*\"",
1414
"typecheck": "tsc --noEmit",
1515
"clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo"
1616
},

apps/demos/source/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"build": "tsup --silent",
2121
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
2222
"dev": "jest --watchAll --colors",
23-
"lint": "tsc && eslint \"**/*.ts*\"",
23+
"typecheck": "tsc --noEmit",
24+
"lint": "eslint \"**/*.ts*\"",
2425
"test": "jest"
2526
},
2627
"dependencies": {

apps/demos/transformer/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"build": "tsup --silent",
2121
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
2222
"dev": "jest --watchAll --colors",
23-
"lint": "tsc && eslint \"**/*.ts*\"",
23+
"typecheck": "tsc --noEmit",
24+
"lint": "eslint \"**/*.ts*\"",
2425
"test": "jest"
2526
},
2627
"dependencies": {

apps/quickstart/jest.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import baseConfig from '@walkeros/config/jest/web.config';
33
const config = {
44
displayName: 'quickstart',
55
moduleNameMapper: {
6+
...baseConfig.moduleNameMapper,
67
'^@/(.*)$': '<rootDir>/src/$1',
78
},
89
};

apps/quickstart/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"build": "tsup --silent",
99
"test": "jest",
1010
"dev": "jest --watchAll --colors",
11-
"lint": "tsc --noEmit && eslint \"**/*.ts*\"",
11+
"typecheck": "tsc --noEmit",
12+
"lint": "eslint \"**/*.ts*\"",
1213
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
1314
"update": "npx npm-check-updates -u && npm update"
1415
},

apps/storybook-addon/jest.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const config = {
55
displayName: '@walkeros/storybook-addon',
66
setupFilesAfterEnv: ['<rootDir>/src/__tests__/setup.ts'],
77
moduleNameMapper: {
8+
...baseConfig.moduleNameMapper,
89
'^src/(.*)$': '<rootDir>/src/$1',
910
},
1011
};

apps/walkerjs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"build": "tsup",
3434
"test": "jest --colors --coverage",
3535
"dev": "jest --watchAll --colors",
36-
"lint": "tsc --noEmit && eslint \"**/*.ts*\"",
36+
"typecheck": "tsc --noEmit",
37+
"lint": "eslint \"**/*.ts*\"",
3738
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf coverage",
3839
"preview": "npm run build && npx serve -l 3333 examples"
3940
},

0 commit comments

Comments
 (0)