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/core/index.js
CHANGED
|
@@ -867,8 +867,8 @@ import * as path8 from "path";
|
|
|
867
867
|
var MCP_JSON_CONTENT = {
|
|
868
868
|
mcpServers: {
|
|
869
869
|
"teamix-evo": {
|
|
870
|
-
command: "
|
|
871
|
-
args: ["
|
|
870
|
+
command: "node",
|
|
871
|
+
args: ["node_modules/@teamix-evo/mcp/dist/cli.js"]
|
|
872
872
|
}
|
|
873
873
|
}
|
|
874
874
|
};
|
|
@@ -2256,6 +2256,14 @@ export default [...consumerPreset];
|
|
|
2256
2256
|
var STYLELINT_CONFIG_CONTENT = `/** @type {import('stylelint').Config} */
|
|
2257
2257
|
module.exports = {
|
|
2258
2258
|
extends: ['@teamix-evo/stylelint-config/presets/consumer'],
|
|
2259
|
+
// Stylelint does NOT inherit ignoreFiles from extended configs \u2014 must declare here.
|
|
2260
|
+
ignoreFiles: [
|
|
2261
|
+
'**/tokens.theme.css',
|
|
2262
|
+
'**/tokens.overrides.css',
|
|
2263
|
+
'**/dist/**',
|
|
2264
|
+
'**/build/**',
|
|
2265
|
+
'**/node_modules/**',
|
|
2266
|
+
],
|
|
2259
2267
|
};
|
|
2260
2268
|
`;
|
|
2261
2269
|
var ESLINT_DEPS = [
|