@noego/app 0.0.1 → 0.0.3
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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Read(//Users/shavauhngabay/dev/noego/dinner/**)",
|
|
5
|
+
"Read(//Users/shavauhngabay/dev/ego/sqlstack/**)",
|
|
6
|
+
"Read(//Users/shavauhngabay/dev/ego/forge/**)",
|
|
7
|
+
"Read(//Users/shavauhngabay/dev/noblelaw/ui/**)",
|
|
8
|
+
"Read(//Users/shavauhngabay/dev/noblelaw/**)",
|
|
9
|
+
"mcp__chrome-devtools__take_screenshot",
|
|
10
|
+
"Bash(npm run build:ui:ssr:*)",
|
|
11
|
+
"mcp__chrome-devtools__navigate_page",
|
|
12
|
+
"Bash(node dist/hammer.js:*)",
|
|
13
|
+
"Bash(tee:*)",
|
|
14
|
+
"mcp__chrome-devtools__list_console_messages"
|
|
15
|
+
],
|
|
16
|
+
"deny": [],
|
|
17
|
+
"ask": []
|
|
18
|
+
}
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noego/app",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Production build tool for Dinner/Forge apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"app": "./bin/app.js",
|
|
8
|
-
"noego":"./bin/app.js"
|
|
8
|
+
"noego": "./bin/app.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "node ./bin/app.js build"
|
package/src/build/bootstrap.js
CHANGED
|
@@ -30,6 +30,10 @@ process.env.FORGE_ROOT = __dirname;
|
|
|
30
30
|
|
|
31
31
|
// Signal that we're running from a built environment (for Forge auto-detection)
|
|
32
32
|
process.env.FORGE_BUILT = 'true';
|
|
33
|
+
process.env.NOEGO_BUILT = 'true';
|
|
34
|
+
|
|
35
|
+
// Indicate Dinner is running in the built environment
|
|
36
|
+
process.env.DINNER_SERVED = 'true';
|
|
33
37
|
|
|
34
38
|
// Import and execute the application
|
|
35
39
|
await import('./${entryRel}');
|