Skip to content

Commit d374fac

Browse files
feat: rslib executor
1 parent 1e24dc3 commit d374fac

32 files changed

+692
-139
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"diffEditor.wordWrap": "on",
33
"editor.rename.enablePreview": false,
4-
"nxConsole.generateAiAgentRules": true
4+
"nxConsole.generateAiAgentRules": true,
5+
"eslint.validate": ["json"]
56
}

nx.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@
4848
},
4949
"@module-federation/3002-checkout:build:production": {
5050
"cache": false
51+
},
52+
"@nx/js:tsc": {
53+
"cache": true,
54+
"dependsOn": ["^build"],
55+
"inputs": ["production", "^production"]
56+
},
57+
"@nx/vite:test": {
58+
"cache": true,
59+
"inputs": ["default", "^production"]
5160
}
5261
},
5362
"namedInputs": {

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
"@nx/module-federation": "21.0.3",
118118
"@nx/next": "21.0.3",
119119
"@nx/node": "21.0.3",
120+
"@nx/plugin": "21.0.3",
120121
"@nx/react": "21.0.3",
121122
"@nx/rollup": "21.0.3",
122123
"@nx/rspack": "21.0.3",
@@ -198,6 +199,8 @@
198199
"jest-environment-node": "29.7.0",
199200
"jiti": "2.4.2",
200201
"js-yaml": "4.1.0",
202+
"jsdom": "~22.1.0",
203+
"jsonc-eslint-parser": "^2.1.0",
201204
"kill-port": "^2.0.1",
202205
"mime-types": "2.1.35",
203206
"msw": "^1.2.1",

packages/error-codes/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@
6666
}
6767
]
6868
}
69+
},
70+
"echo": {
71+
"executor": "rslib:echo",
72+
"options": {
73+
"textToEcho": "Hello World"
74+
}
6975
}
7076
}
7177
}

0 commit comments

Comments
 (0)