@bhooai/nexus-cli 2.0.9 → 2.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bhooai/nexus-cli",
3
- "version": "2.0.9",
3
+ "version": "2.0.11",
4
4
  "description": "BhooAI Nexus v2 CLI — init, dev, build, test, scaffolding, plugins, queue, db.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1,5 +1,10 @@
1
1
  import { createPreset } from '@bhooai/nexus-postcss';
2
2
 
3
3
  export default createPreset({
4
- extraContent: ['./src/**/*.{ts,tsx}', '../../node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}'],
4
+ extraContent: [
5
+ './src/**/*.{ts,tsx}',
6
+ '../../node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
7
+ './node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
8
+ '../../../node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
9
+ ],
5
10
  });
@@ -3,7 +3,10 @@ export default {
3
3
  content: [
4
4
  './index.html',
5
5
  './src/**/*.{ts,tsx}',
6
+ // When admin is package-only, scan the published package so admin-* utilities are not purged
6
7
  '../../node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
8
+ './node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
9
+ '../../../node_modules/@bhooai/nexus-admin/src/**/*.{ts,tsx,js}',
7
10
  ],
8
11
  theme: { extend: {} },
9
12
  plugins: [],