teamix-evo 0.13.3 → 0.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/index.js +10 -2
- package/dist/core/index.js.map +1 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -1165,8 +1165,8 @@ import * as path8 from "path";
|
|
|
1165
1165
|
var MCP_JSON_CONTENT = {
|
|
1166
1166
|
mcpServers: {
|
|
1167
1167
|
"teamix-evo": {
|
|
1168
|
-
command: "
|
|
1169
|
-
args: ["
|
|
1168
|
+
command: "node",
|
|
1169
|
+
args: ["node_modules/@teamix-evo/mcp/dist/cli.js"]
|
|
1170
1170
|
}
|
|
1171
1171
|
}
|
|
1172
1172
|
};
|
|
@@ -8205,6 +8205,14 @@ export default [...consumerPreset];
|
|
|
8205
8205
|
var STYLELINT_CONFIG_CONTENT = `/** @type {import('stylelint').Config} */
|
|
8206
8206
|
module.exports = {
|
|
8207
8207
|
extends: ['@teamix-evo/stylelint-config/presets/consumer'],
|
|
8208
|
+
// Stylelint does NOT inherit ignoreFiles from extended configs \u2014 must declare here.
|
|
8209
|
+
ignoreFiles: [
|
|
8210
|
+
'**/tokens.theme.css',
|
|
8211
|
+
'**/tokens.overrides.css',
|
|
8212
|
+
'**/dist/**',
|
|
8213
|
+
'**/build/**',
|
|
8214
|
+
'**/node_modules/**',
|
|
8215
|
+
],
|
|
8208
8216
|
};
|
|
8209
8217
|
`;
|
|
8210
8218
|
var ESLINT_DEPS = [
|