Skip to content

Commit 12038d4

Browse files
committed
fix(build): Revert absolute-path context anchors and exclude node backend modules (#9583)
1 parent 1b4c7d1 commit 12038d4

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

resources/content/release-notes/v12.1.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ isDraft: true
1313

1414
> **TL;DR:** In v12.1.0, the Neo Agent OS takes on its most profound architectural challenge yet: **The Hierarchical Data Layer**. We engineered `TreeStore` and `TreeGrid` to deliver the same O(1) raw rendering performance to infinitely nested organizational structures as v12.0 brought to flat grids. Supporting this hero feature, we completely overhauled the Data Pipeline, unlocked High-Performance Column Pinning, and fortified our MCP Server ecosystem with cloud-native OIDC security.
1515
>
16-
> *Velocity Qualifier:* We resolved **175 tickets in just 22 active development days** (averaging ~8.0/day). While numerically lower than v12.0's 13.4/day, the scope per ticket in v12.1 shifted from "surface refactoring" to "deep multi-threaded architecture," proving our Human-AI co-architecture scales to extreme complexity without fracturing.
16+
> *Velocity Qualifier:* We resolved **177 tickets in just 22 active development days** (averaging ~8.0/day). While numerically lower than v12.0's 13.4/day, the scope per ticket in v12.1 shifted from "surface refactoring" to "deep multi-threaded architecture," proving our Human-AI co-architecture scales to extreme complexity without fracturing.
1717
1818
---
1919

2020
## ⚡ The Cyborg Factor Continues
2121

22-
If v12.0.0 proved that a solo developer pairing with a stateful AI agent could conquer foundational engine rewrites, v12.1.0 proves this velocity is sustainable. Working alongside the Neo Agent OS, we managed to resolve a staggering 175 tickets in just 22 days of active development.
22+
If v12.0.0 proved that a solo developer pairing with a stateful AI agent could conquer foundational engine rewrites, v12.1.0 proves this velocity is sustainable. Working alongside the Neo Agent OS, we managed to resolve a staggering 177 tickets in just 22 days of active development.
2323

2424
But raw velocity isn't the real story here. The defining characteristic of v12.1 is the evolution of **Human-AI Co-Architecture**.
2525

src/worker/App.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ class App extends Base {
341341

342342
return import(
343343
/* webpackInclude: /(?:apps|docs\/app|examples|src)\/.*app\.mjs$/ */
344-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
344+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
345345
/* webpackMode: "lazy" */
346346
`../../${path}.mjs`
347347
)

src/worker/Canvas.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ class Canvas extends Base {
8282

8383
try {
8484
await import(
85-
/* webpackInclude: /^(?:apps|examples|src)\/.*canvas\/.*\.mjs$/ */
86-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
85+
/* webpackInclude: /(?:apps|examples|src)\/.*canvas\/.*\.mjs$/ */
86+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
8787
/* webpackMode: "lazy" */
8888
`../../${path}.mjs`
8989
);
@@ -122,8 +122,8 @@ class Canvas extends Base {
122122
}
123123

124124
import(
125-
/* webpackInclude: /^(?:apps|examples|src)\/.*canvas\.mjs$/ */
126-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
125+
/* webpackInclude: /(?:apps|examples|src)\/.*canvas\.mjs$/ */
126+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
127127
/* webpackMode: "lazy" */
128128
`../../${path}/canvas.mjs`
129129
).then(module => {

src/worker/Data.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ class Data extends Base {
8585

8686
try {
8787
let module = await import(
88-
/* webpackInclude: /^(?:apps|docs\/app|examples|src)\/.*\.mjs$/ */
89-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
88+
/* webpackInclude: /(?:apps|docs\/app|examples|src)\/.*\.mjs$/ */
89+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
9090
/* webpackMode: "lazy" */
9191
`../../${path}.mjs`
9292
);
@@ -130,23 +130,23 @@ class Data extends Base {
130130
case 'connection':
131131
await import(
132132
/* webpackInclude: /src\/data\/connection\/.*\.mjs$/ */
133-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
133+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
134134
/* webpackMode: "lazy" */
135135
`../data/connection/${name}.mjs`
136136
);
137137
break;
138138
case 'parser':
139139
await import(
140140
/* webpackInclude: /src\/data\/parser\/.*\.mjs$/ */
141-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
141+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
142142
/* webpackMode: "lazy" */
143143
`../data/parser/${name}.mjs`
144144
);
145145
break;
146146
case 'normalizer':
147147
await import(
148148
/* webpackInclude: /src\/data\/normalizer\/.*\.mjs$/ */
149-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
149+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
150150
/* webpackMode: "lazy" */
151151
`../data/normalizer/${name}.mjs`
152152
);
@@ -177,8 +177,8 @@ class Data extends Base {
177177

178178
try {
179179
await import(
180-
/* webpackInclude: /^(?:apps|docs\/app|examples|src)\/.*\.mjs$/ */
181-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
180+
/* webpackInclude: /(?:apps|docs\/app|examples|src)\/.*\.mjs$/ */
181+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
182182
/* webpackMode: "lazy" */
183183
`../../${path}.mjs`
184184
);

src/worker/Task.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ class Task extends Base {
5656
}
5757

5858
import(
59-
/* webpackInclude: /^(?:apps|examples|src)\/.*task\.mjs$/ */
60-
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules)\/(?!neo\.mjs)/ */
59+
/* webpackInclude: /(?:apps|examples|src)\/.*task\.mjs$/ */
60+
/* webpackExclude: /(?:\/|\\)(buildScripts|dist|node_modules(?:\/|\\)(?!neo\.mjs)|ai(?:\/|\\)|server\.mjs|devindex(?:\/|\\)services)/ */
6161
/* webpackMode: "lazy" */
6262
`../../${path}/task.mjs`
6363
).then(module => {

0 commit comments

Comments
 (0)