profoundjs 7.21.0 → 7.22.0

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/setup/config.js CHANGED
@@ -22,8 +22,5 @@ module.exports = {
22
22
  ],
23
23
  "timeout": 3600,
24
24
  "defaultMode": "case-sensitive",
25
- "preserveFieldNames": true,
26
- "searchModulesPaths": [
27
- "environment"
28
- ]
25
+ "preserveFieldNames": true
29
26
  }
Binary file
package/setup/setup.js CHANGED
@@ -332,16 +332,6 @@ let SILENT_MODE = false;
332
332
  }
333
333
  }
334
334
 
335
- // Create lowcode program: environments.
336
- const wsPath = path.join(deployDir, "modules", "environment");
337
- if (directoryExists(wsPath)) {
338
- log(`Skipping lowcode program, ${wsPath} -- directory exists.`);
339
- }
340
- else {
341
- log(`Creating lowcode program, ${wsPath}`);
342
- copyDir(path.join(__dirname, "modules", "environment"), path.join(deployDir, "modules"));
343
- }
344
-
345
335
  // Create store_credentials.js.
346
336
  if (fileExists(path.join(deployDir, "store_credentials.js"))) {
347
337
  log("store_credentials.js file exists.");
@@ -1,17 +0,0 @@
1
-
2
- # Environment/User Maintenace
3
-
4
- This **low-code maintenance program** allows you to manage multiple **ProfoundUI Environments** from a single instance.
5
-
6
- ## Features
7
-
8
- - **Environment Maintenance** – Add custom commands to execute during instance startup.
9
- - **Library List Management** – Assigning a job description to an environment automatically configures the library list.
10
- - **Instance Notes** – Add notes for specific instances to track details or configurations.
11
- - **User Environment Maintenance** – Replaces the initial menu and initial program used in the user profile setup.
12
- - Sets the default **ProfoundUI environment** for each user.
13
- - Allows authorized users to change their environment as needed.
14
- - Ability to overrides the workstation id.
15
- ## Future Development
16
-
17
- - The **Automated Testing** tab is currently reserved for future use.