@builderos/create-agent-os 0.0.6 → 0.0.7

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": "@builderos/create-agent-os",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Scaffolding tool for Agent OS applications",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,12 +5,5 @@ import path from 'path'
5
5
  // https://vitejs.dev/config/
6
6
  export default defineConfig({
7
7
  plugins: [react()],
8
- resolve: {
9
- alias: {
10
- // Robustness: Force usage of the local node_modules' React to prevent duplicates
11
- // when using linked packages or monorepos.
12
- react: path.resolve('./node_modules/react'),
13
- 'react-dom': path.resolve('./node_modules/react-dom'),
14
- },
15
- },
8
+
16
9
  })