n8n 1.123.0 → 2.0.0-rc.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/bin/n8n +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/command-registry.d.ts +1 -0
- package/dist/command-registry.js +38 -5
- package/dist/command-registry.js.map +1 -1
- package/dist/commands/base-command.d.ts +0 -1
- package/dist/commands/base-command.js +21 -35
- package/dist/commands/base-command.js.map +1 -1
- package/dist/commands/publish/workflow.d.ts +20 -0
- package/dist/commands/publish/workflow.js +58 -0
- package/dist/commands/publish/workflow.js.map +1 -0
- package/dist/commands/start.js +1 -18
- package/dist/commands/start.js.map +1 -1
- package/dist/commands/unpublish/workflow.d.ts +17 -0
- package/dist/commands/unpublish/workflow.js +60 -0
- package/dist/commands/unpublish/workflow.js.map +1 -0
- package/dist/commands/update/workflow.js +31 -9
- package/dist/commands/update/workflow.js.map +1 -1
- package/dist/config/index.js +0 -32
- package/dist/config/index.js.map +1 -1
- package/dist/controllers/oauth/abstract-oauth.controller.js +1 -1
- package/dist/controllers/oauth/abstract-oauth.controller.js.map +1 -1
- package/dist/public-api/v1/handlers/workflows/workflows.handler.js +1 -0
- package/dist/public-api/v1/handlers/workflows/workflows.handler.js.map +1 -1
- package/dist/public-api/v1/openapi.yml +20 -1
- package/dist/scaling/scaling.service.js +1 -1
- package/dist/scaling/scaling.service.js.map +1 -1
- package/dist/workflows/workflow.service.d.ts +1 -0
- package/dist/workflows/workflow.service.js +34 -77
- package/dist/workflows/workflow.service.js.map +1 -1
- package/package.json +23 -23
package/bin/n8n
CHANGED
|
@@ -37,7 +37,7 @@ require('reflect-metadata');
|
|
|
37
37
|
// Also, do not use `inE2ETests` from constants here, because that'd end up code that might read from `process.env` before the values are loaded from an `.env` file.
|
|
38
38
|
if (process.env.E2E_TESTS !== 'true') {
|
|
39
39
|
// Loading dotenv early ensures that `process.env` is up-to-date everywhere in code
|
|
40
|
-
require('dotenv').config();
|
|
40
|
+
require('dotenv').config({ quiet: true });
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
// Load config early to ensure `N8N_CONFIG_FILES` values are populated into `GlobalConfig`
|