@netlify/build 29.0.1-rc → 29.0.2

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.
Files changed (266) hide show
  1. package/bin.js +5 -0
  2. package/lib/core/bin.js +66 -0
  3. package/lib/core/build.js +356 -0
  4. package/lib/core/config.js +121 -0
  5. package/lib/core/constants.js +116 -0
  6. package/lib/core/dev.js +27 -0
  7. package/lib/core/dry.js +21 -0
  8. package/lib/core/feature_flags.js +21 -0
  9. package/lib/core/flags.js +201 -0
  10. package/lib/core/lingering.js +68 -0
  11. package/lib/core/main.js +110 -0
  12. package/lib/core/missing_side_file.js +17 -0
  13. package/lib/core/normalize_flags.js +59 -0
  14. package/lib/core/severity.js +21 -0
  15. package/lib/core/types.js +8 -0
  16. package/lib/core/user_node_version.js +32 -0
  17. package/lib/env/changes.js +43 -0
  18. package/lib/env/main.js +14 -0
  19. package/lib/env/metadata.js +68 -0
  20. package/lib/error/api.js +37 -0
  21. package/lib/error/build.js +36 -0
  22. package/{src → lib}/error/cancel.js +5 -6
  23. package/lib/error/colors.js +9 -0
  24. package/lib/error/handle.js +46 -0
  25. package/lib/error/info.js +37 -0
  26. package/lib/error/monitor/location.js +16 -0
  27. package/lib/error/monitor/normalize.js +86 -0
  28. package/lib/error/monitor/print.js +20 -0
  29. package/lib/error/monitor/report.js +120 -0
  30. package/lib/error/monitor/start.js +61 -0
  31. package/lib/error/parse/clean_stack.js +70 -0
  32. package/lib/error/parse/location.js +50 -0
  33. package/lib/error/parse/normalize.js +24 -0
  34. package/lib/error/parse/parse.js +67 -0
  35. package/lib/error/parse/plugin.js +55 -0
  36. package/lib/error/parse/properties.js +16 -0
  37. package/lib/error/parse/serialize_log.js +34 -0
  38. package/lib/error/parse/serialize_status.js +18 -0
  39. package/lib/error/parse/stack.js +34 -0
  40. package/lib/error/report.js +27 -0
  41. package/lib/error/type.js +177 -0
  42. package/lib/install/functions.js +20 -0
  43. package/lib/install/local.js +45 -0
  44. package/lib/install/main.js +67 -0
  45. package/lib/install/missing.js +54 -0
  46. package/lib/log/colors.js +28 -0
  47. package/lib/log/description.js +21 -0
  48. package/lib/log/header.js +14 -0
  49. package/lib/log/header_func.js +13 -0
  50. package/lib/log/logger.js +140 -0
  51. package/lib/log/messages/compatibility.js +146 -0
  52. package/lib/log/messages/config.js +91 -0
  53. package/lib/log/messages/core.js +51 -0
  54. package/lib/log/messages/core_steps.js +75 -0
  55. package/lib/log/messages/dry.js +41 -0
  56. package/lib/log/messages/install.js +25 -0
  57. package/lib/log/messages/ipc.js +29 -0
  58. package/lib/log/messages/mutations.js +62 -0
  59. package/{src → lib}/log/messages/plugins.js +18 -32
  60. package/lib/log/messages/status.js +14 -0
  61. package/lib/log/messages/steps.js +18 -0
  62. package/lib/log/old_version.js +32 -0
  63. package/lib/log/serialize.js +10 -0
  64. package/lib/log/stream.js +68 -0
  65. package/lib/log/theme.js +27 -0
  66. package/lib/plugins/child/diff.js +46 -0
  67. package/lib/plugins/child/error.js +26 -0
  68. package/lib/plugins/child/lazy.js +15 -0
  69. package/lib/plugins/child/load.js +22 -0
  70. package/lib/plugins/child/logic.js +57 -0
  71. package/lib/plugins/child/main.js +37 -0
  72. package/lib/plugins/child/run.js +19 -0
  73. package/lib/plugins/child/status.js +63 -0
  74. package/lib/plugins/child/typescript.js +28 -0
  75. package/lib/plugins/child/utils.js +42 -0
  76. package/lib/plugins/child/validate.js +31 -0
  77. package/lib/plugins/compatibility.js +104 -0
  78. package/{src → lib}/plugins/error.js +31 -35
  79. package/{src → lib}/plugins/events.js +7 -12
  80. package/lib/plugins/expected_version.js +81 -0
  81. package/lib/plugins/internal.js +10 -0
  82. package/lib/plugins/ipc.js +120 -0
  83. package/lib/plugins/list.js +73 -0
  84. package/lib/plugins/load.js +50 -0
  85. package/lib/plugins/manifest/check.js +85 -0
  86. package/lib/plugins/manifest/load.js +38 -0
  87. package/lib/plugins/manifest/main.js +19 -0
  88. package/lib/plugins/manifest/path.js +24 -0
  89. package/lib/plugins/manifest/validate.js +91 -0
  90. package/lib/plugins/node_version.js +35 -0
  91. package/lib/plugins/options.js +70 -0
  92. package/lib/plugins/pinned_version.js +83 -0
  93. package/lib/plugins/resolve.js +110 -0
  94. package/lib/plugins/spawn.js +58 -0
  95. package/lib/plugins_core/add.js +35 -0
  96. package/lib/plugins_core/build_command.js +50 -0
  97. package/lib/plugins_core/deploy/buildbot_client.js +87 -0
  98. package/lib/plugins_core/deploy/index.js +49 -0
  99. package/{src → lib}/plugins_core/deploy/manifest.yml +0 -0
  100. package/lib/plugins_core/edge_functions/index.js +76 -0
  101. package/{src → lib}/plugins_core/edge_functions/lib/error.js +13 -17
  102. package/lib/plugins_core/edge_functions/validate_manifest/validate_edge_functions_manifest.js +21 -0
  103. package/lib/plugins_core/functions/error.js +123 -0
  104. package/lib/plugins_core/functions/feature_flags.js +6 -0
  105. package/lib/plugins_core/functions/index.js +114 -0
  106. package/lib/plugins_core/functions/utils.js +45 -0
  107. package/lib/plugins_core/functions/zisi.js +39 -0
  108. package/{src → lib}/plugins_core/functions_install/index.js +8 -11
  109. package/{src → lib}/plugins_core/functions_install/manifest.yml +0 -0
  110. package/lib/plugins_core/list.js +20 -0
  111. package/lib/report/statsd.js +31 -0
  112. package/lib/status/add.js +30 -0
  113. package/lib/status/colors.js +18 -0
  114. package/lib/status/load_error.js +10 -0
  115. package/lib/status/report.js +83 -0
  116. package/lib/status/success.js +14 -0
  117. package/lib/steps/core_step.js +59 -0
  118. package/lib/steps/error.js +65 -0
  119. package/lib/steps/get.js +43 -0
  120. package/lib/steps/plugin.js +55 -0
  121. package/lib/steps/return.js +25 -0
  122. package/lib/steps/run_core_steps.js +117 -0
  123. package/lib/steps/run_step.js +190 -0
  124. package/lib/steps/run_steps.js +96 -0
  125. package/lib/steps/update_config.js +66 -0
  126. package/lib/telemetry/main.js +97 -0
  127. package/lib/time/aggregate.js +109 -0
  128. package/lib/time/main.js +31 -0
  129. package/lib/time/measure.js +16 -0
  130. package/lib/time/report.js +24 -0
  131. package/lib/utils/errors.js +13 -0
  132. package/lib/utils/json.js +15 -0
  133. package/lib/utils/omit.js +3 -0
  134. package/lib/utils/package.js +24 -0
  135. package/lib/utils/remove_falsy.js +8 -0
  136. package/lib/utils/resolve.js +41 -0
  137. package/lib/utils/runtime.js +5 -0
  138. package/lib/utils/semver.js +28 -0
  139. package/package.json +41 -24
  140. package/types/config/netlify_config.d.ts +4 -4
  141. package/types/netlify_plugin_constants.d.ts +8 -8
  142. package/src/core/bin.js +0 -83
  143. package/src/core/build.js +0 -554
  144. package/src/core/config.js +0 -186
  145. package/src/core/constants.js +0 -156
  146. package/src/core/dev.js +0 -31
  147. package/src/core/dry.js +0 -39
  148. package/src/core/feature_flags.js +0 -22
  149. package/src/core/flags.js +0 -204
  150. package/src/core/lingering.js +0 -85
  151. package/src/core/main.js +0 -165
  152. package/src/core/missing_side_file.js +0 -29
  153. package/src/core/normalize_flags.js +0 -70
  154. package/src/core/severity.js +0 -22
  155. package/src/core/user_node_version.js +0 -41
  156. package/src/env/changes.js +0 -52
  157. package/src/env/main.js +0 -19
  158. package/src/env/metadata.js +0 -81
  159. package/src/error/api.js +0 -46
  160. package/src/error/build.js +0 -50
  161. package/src/error/colors.js +0 -11
  162. package/src/error/handle.js +0 -57
  163. package/src/error/info.js +0 -46
  164. package/src/error/monitor/location.js +0 -21
  165. package/src/error/monitor/normalize.js +0 -96
  166. package/src/error/monitor/print.js +0 -42
  167. package/src/error/monitor/report.js +0 -138
  168. package/src/error/monitor/start.js +0 -69
  169. package/src/error/parse/clean_stack.js +0 -87
  170. package/src/error/parse/location.js +0 -62
  171. package/src/error/parse/normalize.js +0 -29
  172. package/src/error/parse/parse.js +0 -97
  173. package/src/error/parse/plugin.js +0 -70
  174. package/src/error/parse/properties.js +0 -23
  175. package/src/error/parse/serialize_log.js +0 -42
  176. package/src/error/parse/serialize_status.js +0 -23
  177. package/src/error/parse/stack.js +0 -43
  178. package/src/error/type.js +0 -189
  179. package/src/install/functions.js +0 -28
  180. package/src/install/local.js +0 -62
  181. package/src/install/main.js +0 -81
  182. package/src/install/missing.js +0 -67
  183. package/src/log/colors.js +0 -34
  184. package/src/log/description.js +0 -26
  185. package/src/log/header.js +0 -16
  186. package/src/log/header_func.js +0 -17
  187. package/src/log/logger.js +0 -161
  188. package/src/log/messages/compatibility.js +0 -164
  189. package/src/log/messages/config.js +0 -107
  190. package/src/log/messages/core.js +0 -70
  191. package/src/log/messages/core_steps.js +0 -104
  192. package/src/log/messages/dry.js +0 -63
  193. package/src/log/messages/install.js +0 -20
  194. package/src/log/messages/ipc.js +0 -38
  195. package/src/log/messages/mutations.js +0 -82
  196. package/src/log/messages/status.js +0 -16
  197. package/src/log/messages/steps.js +0 -22
  198. package/src/log/old_version.js +0 -41
  199. package/src/log/serialize.js +0 -13
  200. package/src/log/stream.js +0 -85
  201. package/src/log/theme.js +0 -26
  202. package/src/plugins/child/diff.js +0 -55
  203. package/src/plugins/child/error.js +0 -32
  204. package/src/plugins/child/lazy.js +0 -18
  205. package/src/plugins/child/load.js +0 -29
  206. package/src/plugins/child/logic.js +0 -57
  207. package/src/plugins/child/main.js +0 -51
  208. package/src/plugins/child/run.js +0 -28
  209. package/src/plugins/child/status.js +0 -74
  210. package/src/plugins/child/typescript.js +0 -45
  211. package/src/plugins/child/utils.js +0 -56
  212. package/src/plugins/child/validate.js +0 -34
  213. package/src/plugins/compatibility.js +0 -128
  214. package/src/plugins/expected_version.js +0 -119
  215. package/src/plugins/ipc.js +0 -145
  216. package/src/plugins/list.js +0 -86
  217. package/src/plugins/load.js +0 -70
  218. package/src/plugins/manifest/check.js +0 -106
  219. package/src/plugins/manifest/load.js +0 -41
  220. package/src/plugins/manifest/main.js +0 -22
  221. package/src/plugins/manifest/path.js +0 -31
  222. package/src/plugins/manifest/validate.js +0 -108
  223. package/src/plugins/node_version.js +0 -50
  224. package/src/plugins/options.js +0 -88
  225. package/src/plugins/pinned_version.js +0 -131
  226. package/src/plugins/resolve.js +0 -152
  227. package/src/plugins/spawn.js +0 -66
  228. package/src/plugins_core/add.js +0 -49
  229. package/src/plugins_core/build_command.js +0 -75
  230. package/src/plugins_core/deploy/buildbot_client.js +0 -102
  231. package/src/plugins_core/deploy/index.js +0 -73
  232. package/src/plugins_core/edge_functions/index.js +0 -123
  233. package/src/plugins_core/edge_functions/lib/internal_manifest.js +0 -54
  234. package/src/plugins_core/edge_functions/validate_manifest/validate_edge_functions_manifest.js +0 -89
  235. package/src/plugins_core/functions/error.js +0 -163
  236. package/src/plugins_core/functions/feature_flags.js +0 -6
  237. package/src/plugins_core/functions/index.js +0 -160
  238. package/src/plugins_core/functions/utils.js +0 -66
  239. package/src/plugins_core/functions/zisi.js +0 -53
  240. package/src/plugins_core/list.js +0 -27
  241. package/src/status/add.js +0 -36
  242. package/src/status/colors.js +0 -23
  243. package/src/status/load_error.js +0 -11
  244. package/src/status/report.js +0 -137
  245. package/src/status/success.js +0 -18
  246. package/src/steps/core_step.js +0 -92
  247. package/src/steps/error.js +0 -102
  248. package/src/steps/get.js +0 -51
  249. package/src/steps/plugin.js +0 -85
  250. package/src/steps/return.js +0 -52
  251. package/src/steps/run_core_steps.js +0 -200
  252. package/src/steps/run_step.js +0 -304
  253. package/src/steps/run_steps.js +0 -179
  254. package/src/steps/update_config.js +0 -93
  255. package/src/telemetry/main.js +0 -136
  256. package/src/time/aggregate.js +0 -146
  257. package/src/time/main.js +0 -48
  258. package/src/time/measure.js +0 -22
  259. package/src/time/report.js +0 -59
  260. package/src/utils/errors.js +0 -12
  261. package/src/utils/json.js +0 -19
  262. package/src/utils/omit.js +0 -6
  263. package/src/utils/package.js +0 -23
  264. package/src/utils/remove_falsy.js +0 -10
  265. package/src/utils/resolve.js +0 -46
  266. package/src/utils/semver.js +0 -34
@@ -0,0 +1,54 @@
1
+ import { promises as fs } from 'fs';
2
+ import { normalize } from 'path';
3
+ import { pathExists } from 'path-exists';
4
+ import { isFile } from 'path-type';
5
+ import { logInstallMissingPlugins } from '../log/messages/install.js';
6
+ import { addExactDependencies } from './main.js';
7
+ // Automatically install plugins if not already installed.
8
+ // Since this is done under the hood, we always use `npm` with specific `npm`
9
+ // options. We do not allow configure the package manager nor its options.
10
+ // Users requiring `yarn` or custom npm/yarn flags should install the plugin in
11
+ // their `package.json`.
12
+ export const installMissingPlugins = async function ({ missingPlugins, autoPluginsDir, mode, logs }) {
13
+ const packages = missingPlugins.map(getPackage);
14
+ logInstallMissingPlugins(logs, packages);
15
+ await createAutoPluginsDir(logs, autoPluginsDir);
16
+ await addExactDependencies({ packageRoot: autoPluginsDir, isLocal: mode !== 'buildbot', packages });
17
+ };
18
+ // We pin the version without using semver ranges ^ nor ~
19
+ const getPackage = function ({ packageName, expectedVersion }) {
20
+ return `${packageName}@${expectedVersion}`;
21
+ };
22
+ const createAutoPluginsDir = async function (logs, autoPluginsDir) {
23
+ await ensureDir(logs, autoPluginsDir);
24
+ await createPackageJson(autoPluginsDir);
25
+ };
26
+ // Create the directory if it does not exist
27
+ const ensureDir = async function (logs, autoPluginsDir) {
28
+ if (await pathExists(autoPluginsDir)) {
29
+ return;
30
+ }
31
+ // If `.netlify` exists but is not a directory, we remove it first
32
+ const autoPluginsParent = normalize(`${autoPluginsDir}/..`);
33
+ if (await isFile(autoPluginsParent)) {
34
+ await fs.unlink(autoPluginsParent);
35
+ }
36
+ await fs.mkdir(autoPluginsDir, { recursive: true });
37
+ };
38
+ // Create a dummy `package.json` so we can run `npm install` and get a lock file
39
+ const createPackageJson = async function (autoPluginsDir) {
40
+ const packageJsonPath = `${autoPluginsDir}/package.json`;
41
+ if (await pathExists(packageJsonPath)) {
42
+ return;
43
+ }
44
+ const packageJsonContent = JSON.stringify(AUTO_PLUGINS_PACKAGE_JSON, null, 2);
45
+ await fs.writeFile(packageJsonPath, packageJsonContent);
46
+ };
47
+ const AUTO_PLUGINS_PACKAGE_JSON = {
48
+ name: 'netlify-local-plugins',
49
+ description: 'This directory contains Build plugins that have been automatically installed by Netlify.',
50
+ version: '1.0.0',
51
+ private: true,
52
+ author: 'Netlify',
53
+ license: 'MIT',
54
+ };
@@ -0,0 +1,28 @@
1
+ import { inspect } from 'util';
2
+ import supportsColor from 'supports-color';
3
+ const hasColors = () => supportsColor.stdout !== false;
4
+ /**
5
+ * Plugin child processes use `stdio: 'pipe'` so they are always
6
+ * non-interactive even if the parent is an interactive TTY. This means they
7
+ * would normally lose colors. If the parent has colors, we pass an environment
8
+ * variable to the child process to force colors.
9
+ */
10
+ export const getParentColorEnv = function () {
11
+ if (!hasColors()) {
12
+ return {};
13
+ }
14
+ return { FORCE_COLOR: '1' };
15
+ };
16
+ /**
17
+ * Child processes and the buildbot relies on `FORCE_COLOR=1` to set colors.
18
+ * However `utils.inspect()` (used by `console.log()`) uses
19
+ * `process.stdout.hasColors` which is always `undefined` when the TTY is
20
+ * non-interactive. So we need to set `util.inspect.defaultOptions.colors`
21
+ * manually both in plugin processes.
22
+ */
23
+ export const setInspectColors = function () {
24
+ if (!hasColors()) {
25
+ return;
26
+ }
27
+ inspect.defaultOptions.colors = true;
28
+ };
@@ -0,0 +1,21 @@
1
+ export const getBuildCommandDescription = function (buildCommandOrigin) {
2
+ return BUILD_COMMAND_DESCRIPTIONS[buildCommandOrigin];
3
+ };
4
+ const BUILD_COMMAND_DESCRIPTIONS = {
5
+ ui: 'Build command from Netlify app',
6
+ config: 'build.command from netlify.toml',
7
+ inline: 'build.command from a plugin',
8
+ };
9
+ /** Retrieve human-friendly plugin origin */
10
+ export const getPluginOrigin = function (loadedFrom, origin) {
11
+ const originName = PLUGIN_ORIGINS[origin];
12
+ if (loadedFrom === 'package.json') {
13
+ return `from ${originName} and package.json`;
14
+ }
15
+ return `from ${originName}`;
16
+ };
17
+ const PLUGIN_ORIGINS = {
18
+ core: 'core',
19
+ ui: 'Netlify app',
20
+ config: 'netlify.toml',
21
+ };
@@ -0,0 +1,14 @@
1
+ import stringWidth from 'string-width';
2
+ const HEADER_MIN_WIDTH = 60;
3
+ const PADDING_WIDTH = 2;
4
+ /** Print a rectangular header */
5
+ export const getHeader = function (message) {
6
+ const messageWidth = stringWidth(message);
7
+ const headerWidth = Math.max(HEADER_MIN_WIDTH, messageWidth);
8
+ const line = '─'.repeat(headerWidth + PADDING_WIDTH * 2);
9
+ const paddingLeft = ' '.repeat(PADDING_WIDTH);
10
+ const paddingRight = ' '.repeat(PADDING_WIDTH + headerWidth - messageWidth);
11
+ return `${line}
12
+ ${paddingLeft}${message}${paddingRight}
13
+ ${line}`;
14
+ };
@@ -0,0 +1,13 @@
1
+ import { parseErrorInfo } from '../error/parse/parse.js';
2
+ import { logHeader, logErrorHeader } from './logger.js';
3
+ /** Retrieve successful or error header depending on whether `error` exists */
4
+ export const getLogHeaderFunc = function (error) {
5
+ if (error === undefined) {
6
+ return logHeader;
7
+ }
8
+ const { severity } = parseErrorInfo(error);
9
+ if (severity === 'none') {
10
+ return logHeader;
11
+ }
12
+ return logErrorHeader;
13
+ };
@@ -0,0 +1,140 @@
1
+ import { createWriteStream } from 'fs';
2
+ import figures from 'figures';
3
+ import indentString from 'indent-string';
4
+ import { getHeader } from './header.js';
5
+ import { serializeArray, serializeObject } from './serialize.js';
6
+ import { THEME } from './theme.js';
7
+ const INDENT_SIZE = 2;
8
+ /**
9
+ * We need to add a zero width space character in empty lines. Otherwise the
10
+ * buildbot removes those due to a bug: https://github.com/netlify/buildbot/issues/595
11
+ */
12
+ const EMPTY_LINES_REGEXP = /^\s*$/gm;
13
+ const EMPTY_LINE = '\u{200B}';
14
+ /**
15
+ * When the `buffer` option is true, we return logs instead of printing them
16
+ * on the console. The logs are accumulated in a `logs` array variable.
17
+ */
18
+ export const getBufferLogs = (config) => {
19
+ const { buffer = false } = config;
20
+ if (!buffer) {
21
+ return;
22
+ }
23
+ return { stdout: [], stderr: [] };
24
+ };
25
+ // Core logging utility, used by the other methods.
26
+ // This should be used instead of `console.log()` as it allows us to instrument
27
+ // how any build logs is being printed.
28
+ export const log = function (logs, string, config = {}) {
29
+ const { indent = false, color } = config;
30
+ const stringA = indent ? indentString(string, INDENT_SIZE) : string;
31
+ const stringB = String(stringA).replace(EMPTY_LINES_REGEXP, EMPTY_LINE);
32
+ const stringC = color === undefined ? stringB : color(stringB);
33
+ if (logs !== undefined) {
34
+ // `logs` is a stateful variable
35
+ logs.stdout.push(stringC);
36
+ return;
37
+ }
38
+ console.log(stringC);
39
+ };
40
+ const serializeIndentedArray = function (array) {
41
+ return serializeArray(array.map(serializeIndentedItem));
42
+ };
43
+ const serializeIndentedItem = function (item) {
44
+ return indentString(item, INDENT_SIZE + 1).trimStart();
45
+ };
46
+ export const logError = function (logs, string, opts = {}) {
47
+ log(logs, string, { color: THEME.errorLine, ...opts });
48
+ };
49
+ export const logWarning = function (logs, string, opts = {}) {
50
+ log(logs, string, { color: THEME.warningLine, ...opts });
51
+ };
52
+ // Print a message that is under a header/subheader, i.e. indented
53
+ export const logMessage = function (logs, string, opts = {}) {
54
+ log(logs, string, { indent: true, ...opts });
55
+ };
56
+ // Print an object
57
+ export const logObject = function (logs, object, opts) {
58
+ logMessage(logs, serializeObject(object), opts);
59
+ };
60
+ // Print an array
61
+ export const logArray = function (logs, array, opts = {}) {
62
+ logMessage(logs, serializeIndentedArray(array), { color: THEME.none, ...opts });
63
+ };
64
+ // Print an array of errors
65
+ export const logErrorArray = function (logs, array, opts = {}) {
66
+ logMessage(logs, serializeIndentedArray(array), { color: THEME.errorLine, ...opts });
67
+ };
68
+ // Print an array of warnings
69
+ export const logWarningArray = function (logs, array, opts = {}) {
70
+ logMessage(logs, serializeIndentedArray(array), { color: THEME.warningLine, ...opts });
71
+ };
72
+ // Print a main section header
73
+ export const logHeader = function (logs, string, opts = {}) {
74
+ log(logs, `\n${getHeader(string)}`, { color: THEME.header, ...opts });
75
+ };
76
+ // Print a main section header, when an error happened
77
+ export const logErrorHeader = function (logs, string, opts = {}) {
78
+ logHeader(logs, string, { color: THEME.errorHeader, ...opts });
79
+ };
80
+ // Print a sub-section header
81
+ export const logSubHeader = function (logs, string, opts = {}) {
82
+ log(logs, `\n${figures.pointer} ${string}`, { color: THEME.subHeader, ...opts });
83
+ };
84
+ // Print a sub-section header, when an error happened
85
+ export const logErrorSubHeader = function (logs, string, opts = {}) {
86
+ logSubHeader(logs, string, { color: THEME.errorSubHeader, ...opts });
87
+ };
88
+ // Print a sub-section header, when a warning happened
89
+ export const logWarningSubHeader = function (logs, string, opts = {}) {
90
+ logSubHeader(logs, string, { color: THEME.warningSubHeader, ...opts });
91
+ };
92
+ // Combines an array of elements into a single string, separated by a space,
93
+ // and with basic serialization of non-string types
94
+ const reduceLogLines = function (lines) {
95
+ return lines
96
+ .map((input) => {
97
+ if (input instanceof Error) {
98
+ return `${input.message} ${input.stack}`;
99
+ }
100
+ if (typeof input === 'object') {
101
+ try {
102
+ return JSON.stringify(input);
103
+ }
104
+ catch {
105
+ // Value could not be serialized to JSON, so we return the string
106
+ // representation.
107
+ return String(input);
108
+ }
109
+ }
110
+ return String(input);
111
+ })
112
+ .join(' ');
113
+ };
114
+ /**
115
+ * Builds a function for logging data to the system logger (i.e. hidden from
116
+ * the user-facing build logs)
117
+ */
118
+ export const getSystemLogger = function (logs, debug,
119
+ /** A system log file descriptor, if non is provided it will be a noop logger */
120
+ systemLogFile) {
121
+ // If the `debug` flag is used, we return a function that pipes system logs
122
+ // to the regular logger, as the intention is for them to end up in stdout.
123
+ if (debug) {
124
+ return (...args) => log(logs, reduceLogLines(args));
125
+ }
126
+ // If there's not a file descriptor configured for system logs and `debug`
127
+ // is not set, we return a no-op function that will swallow the errors.
128
+ if (!systemLogFile) {
129
+ return () => {
130
+ // no-op
131
+ };
132
+ }
133
+ // Return a function that writes to the file descriptor configured for system
134
+ // logs.
135
+ const fileDescriptor = createWriteStream('', { fd: systemLogFile });
136
+ fileDescriptor.on('error', () => {
137
+ logError(logs, 'Could not write to system log file');
138
+ });
139
+ return (...args) => fileDescriptor.write(`${reduceLogLines(args)}\n`);
140
+ };
@@ -0,0 +1,146 @@
1
+ import semver from 'semver';
2
+ import { addErrorInfo } from '../../error/info.js';
3
+ import { isRuntime } from '../../utils/runtime.js';
4
+ import { isPreviousMajor } from '../../utils/semver.js';
5
+ import { getPluginOrigin } from '../description.js';
6
+ import { logArray, logSubHeader, logWarningArray, logWarningSubHeader } from '../logger.js';
7
+ import { THEME } from '../theme.js';
8
+ export const logRuntime = (logs, pluginOptions) => {
9
+ const runtimes = pluginOptions.filter(isRuntime);
10
+ // Once we have more runtimes, this hardcoded check should be removed
11
+ if (runtimes.length !== 0) {
12
+ const [nextRuntime] = runtimes;
13
+ logSubHeader(logs, `Using Next.js Runtime - v${nextRuntime.pluginPackageJson.version}`);
14
+ }
15
+ };
16
+ export const logLoadingPlugins = function (logs, pluginsOptions, debug) {
17
+ const loadingPlugins = pluginsOptions
18
+ .filter(isNotCorePlugin)
19
+ // We don't want to show runtimes as plugins
20
+ .filter((plugin) => !isRuntime(plugin))
21
+ .map((pluginOptions) => getPluginDescription(pluginOptions, debug));
22
+ if (loadingPlugins.length === 0) {
23
+ return;
24
+ }
25
+ logSubHeader(logs, 'Loading plugins');
26
+ logArray(logs, loadingPlugins);
27
+ };
28
+ // We only logs plugins explicitly enabled by users
29
+ const isNotCorePlugin = function ({ origin }) {
30
+ return origin !== 'core';
31
+ };
32
+ const getPluginDescription = function ({ packageName, pluginPackageJson: { version }, loadedFrom, origin, pinnedVersion, latestVersion, expectedVersion, compatibleVersion, }, debug) {
33
+ const versionedPackage = getVersionedPackage(packageName, version);
34
+ const pluginOrigin = getPluginOrigin(loadedFrom, origin);
35
+ const description = `${THEME.highlightWords(packageName)}${versionedPackage} ${pluginOrigin}`;
36
+ if (!debug) {
37
+ return description;
38
+ }
39
+ const versions = Object.entries({
40
+ pinned: pinnedVersion,
41
+ latest: latestVersion,
42
+ expected: expectedVersion,
43
+ compatible: compatibleVersion,
44
+ })
45
+ .filter(hasVersion)
46
+ .map(getVersionField);
47
+ if (versions.length === 0) {
48
+ return description;
49
+ }
50
+ return `${description} (${versions.join(', ')})`;
51
+ };
52
+ const hasVersion = function ([, version]) {
53
+ return version !== undefined;
54
+ };
55
+ const getVersionField = function ([versionFieldName, version]) {
56
+ return `${versionFieldName} ${version}`;
57
+ };
58
+ // Print a warning message when old versions plugins are used.
59
+ // This can only happen when they are installed to `package.json`.
60
+ // Also throws an error if the Next runtime is >= 4.0.0 || < 4.26.0
61
+ export const logOutdatedPlugins = function (logs, pluginsOptions, featureFlags) {
62
+ const outdatedPlugins = pluginsOptions.filter(hasOutdatedVersion).map(getOutdatedPlugin);
63
+ if (outdatedPlugins.length === 0) {
64
+ return;
65
+ }
66
+ // TODO: remove feature flag once fully rolled out
67
+ if (featureFlags.plugins_break_builds_with_unsupported_plugin_versions)
68
+ throwIfUnsupportedPluginVersion(pluginsOptions.filter(hasOutdatedVersion));
69
+ logWarningSubHeader(logs, 'Outdated plugins');
70
+ logWarningArray(logs, outdatedPlugins);
71
+ };
72
+ const hasOutdatedVersion = function ({ pluginPackageJson: { version }, latestVersion }) {
73
+ return version !== undefined && latestVersion !== undefined && semver.lt(version, latestVersion);
74
+ };
75
+ const getOutdatedPlugin = function ({ packageName, pluginPackageJson: { version }, latestVersion, migrationGuide, loadedFrom, origin, }) {
76
+ const versionedPackage = getVersionedPackage(packageName, version);
77
+ const outdatedDescription = getOutdatedDescription({ latestVersion, migrationGuide, loadedFrom, origin });
78
+ return `${THEME.warningHighlightWords(packageName)}${versionedPackage}: ${outdatedDescription}`;
79
+ };
80
+ const getOutdatedDescription = function ({ latestVersion, migrationGuide, loadedFrom, origin }) {
81
+ const upgradeInstruction = getUpgradeInstruction(loadedFrom, origin);
82
+ if (migrationGuide === undefined) {
83
+ return `latest version is ${latestVersion}\n${upgradeInstruction}`;
84
+ }
85
+ return `latest version is ${latestVersion}\nMigration guide: ${migrationGuide}\n${upgradeInstruction}`;
86
+ };
87
+ const getUpgradeInstruction = function (loadedFrom, origin) {
88
+ if (loadedFrom === 'package.json') {
89
+ return 'To upgrade this plugin, please update its version in "package.json"';
90
+ }
91
+ if (origin === 'ui') {
92
+ return 'To upgrade this plugin, please uninstall and re-install it from the Netlify plugins directory (https://app.netlify.com/plugins)';
93
+ }
94
+ return 'To upgrade this plugin, please remove it from "netlify.toml" and install it from the Netlify plugins directory instead (https://app.netlify.com/plugins)';
95
+ };
96
+ // Print a warning message when plugins are using a version that is too recent
97
+ // and does not meet some `compatibility` expectations.
98
+ // This can only happen when they are installed to `package.json`.
99
+ export const logIncompatiblePlugins = function (logs, pluginsOptions) {
100
+ const incompatiblePlugins = pluginsOptions.filter(hasIncompatibleVersion).map(getIncompatiblePlugin);
101
+ if (incompatiblePlugins.length === 0) {
102
+ return;
103
+ }
104
+ logWarningSubHeader(logs, 'Incompatible plugins');
105
+ logWarningArray(logs, incompatiblePlugins);
106
+ };
107
+ // Throws an error if the Next runtime is >= 4.0.0 || < 4.26.0, otherwise returns.
108
+ const throwIfUnsupportedPluginVersion = function (outdatedPlugins) {
109
+ let packageName;
110
+ let version;
111
+ let latestVersion;
112
+ const nextOutdatedV4Plugin = outdatedPlugins.find((plugin) => {
113
+ packageName = plugin.pluginPackageJson.name;
114
+ version = plugin.pluginPackageJson.version;
115
+ latestVersion = plugin.latestVersion;
116
+ // https://github.com/npm/node-semver#hyphen-ranges-xyz---abc
117
+ // semver hyphen range is inclusive 4.0.0 - 4.25.0 is same as >= 4.0.0 || < 4.26.0;
118
+ return (packageName === '@netlify/plugin-nextjs' &&
119
+ semver.satisfies(version, '4.0.0 - 4.25.0', { includePrerelease: true }));
120
+ });
121
+ if (!nextOutdatedV4Plugin) {
122
+ return;
123
+ }
124
+ const error = new Error(`This site cannot be built because it is using an outdated version of the Next.js Runtime: ${packageName}@${version}. Versions greater than 4.26.0 are recommended. To upgrade this plugin, please update its version in "package.json" to the latest version: ${latestVersion}. If you cannot use a more recent version, please contact support at https://www.netlify.com/support for guidance.`);
125
+ addErrorInfo(error, { type: 'pluginUnsupportedVersion' });
126
+ throw error;
127
+ };
128
+ const hasIncompatibleVersion = function ({ pluginPackageJson: { version }, compatibleVersion, compatWarning }) {
129
+ return (compatWarning !== '' &&
130
+ version !== undefined &&
131
+ compatibleVersion !== undefined &&
132
+ // Using only the major version prevents printing this warning message when
133
+ // a site is using the right `compatibility` version, but is using the most
134
+ // recent version due to the time gap between `npm publish` and the
135
+ // `plugins.json` update
136
+ isPreviousMajor(compatibleVersion, version));
137
+ };
138
+ const getIncompatiblePlugin = function ({ packageName, pluginPackageJson: { version }, compatibleVersion, compatWarning, }) {
139
+ const versionedPackage = getVersionedPackage(packageName, version);
140
+ return `${THEME.warningHighlightWords(packageName)}${versionedPackage}: version ${compatibleVersion} is the most recent version compatible with ${compatWarning}`;
141
+ };
142
+ // Make sure we handle `package.json` with `version` being either `undefined`
143
+ // or an empty string
144
+ const getVersionedPackage = function (packageName, version = '') {
145
+ return version === '' ? '' : `@${version}`;
146
+ };
@@ -0,0 +1,91 @@
1
+ import { cleanupConfig } from '@netlify/config';
2
+ import { DEFAULT_FEATURE_FLAGS } from '../../core/feature_flags.js';
3
+ import { omit } from '../../utils/omit.js';
4
+ import { logMessage, logObject, logSubHeader } from '../logger.js';
5
+ import { THEME } from '../theme.js';
6
+ export const logFlags = function (logs, flags, { debug }) {
7
+ const flagsA = cleanFeatureFlags(flags);
8
+ const hiddenFlags = debug ? HIDDEN_DEBUG_FLAGS : HIDDEN_FLAGS;
9
+ const flagsB = omit(flagsA, hiddenFlags);
10
+ logSubHeader(logs, 'Flags');
11
+ logObject(logs, flagsB);
12
+ };
13
+ // We only show feature flags related to `@netlify/build`.
14
+ // Also, we only print enabled feature flags.
15
+ const cleanFeatureFlags = function ({ featureFlags = {}, ...flags }) {
16
+ const cleanedFeatureFlags = Object.entries(featureFlags)
17
+ .filter(shouldPrintFeatureFlag)
18
+ .map(([featureFlagName]) => featureFlagName);
19
+ return cleanedFeatureFlags.length === 0 ? flags : { ...flags, featureFlags: cleanedFeatureFlags };
20
+ };
21
+ const shouldPrintFeatureFlag = function ([featureFlagName, enabled]) {
22
+ return enabled && featureFlagName in DEFAULT_FEATURE_FLAGS;
23
+ };
24
+ // Hidden because the value is security-sensitive
25
+ const SECURE_FLAGS = ['token', 'bugsnagKey', 'env', 'cachedConfig', 'defaultConfig'];
26
+ // Hidden because those are used in tests
27
+ const TEST_FLAGS = ['buffer', 'telemetry'];
28
+ // Hidden because those are only used internally
29
+ const INTERNAL_FLAGS = [
30
+ 'nodePath',
31
+ 'functionsDistDir',
32
+ 'edgeFunctionsDistDir',
33
+ 'defaultConfig',
34
+ 'cachedConfigPath',
35
+ 'sendStatus',
36
+ 'saveConfig',
37
+ 'statsd',
38
+ 'framework',
39
+ 'featureFlags',
40
+ 'buildbotServerSocket',
41
+ 'testOpts',
42
+ 'siteId',
43
+ 'context',
44
+ 'branch',
45
+ 'cwd',
46
+ 'repositoryRoot',
47
+ 'mode',
48
+ 'apiHost',
49
+ 'cacheDir',
50
+ 'systemLogFile',
51
+ 'timeline',
52
+ ];
53
+ const HIDDEN_FLAGS = [...SECURE_FLAGS, ...TEST_FLAGS, ...INTERNAL_FLAGS];
54
+ const HIDDEN_DEBUG_FLAGS = [...SECURE_FLAGS, ...TEST_FLAGS];
55
+ export const logBuildDir = function (logs, buildDir) {
56
+ logSubHeader(logs, 'Current directory');
57
+ logMessage(logs, buildDir);
58
+ };
59
+ export const logConfigPath = function (logs, configPath = NO_CONFIG_MESSAGE) {
60
+ logSubHeader(logs, 'Config file');
61
+ logMessage(logs, configPath);
62
+ };
63
+ const NO_CONFIG_MESSAGE = 'No config file was defined: using default values.';
64
+ export const logConfig = function ({ logs, netlifyConfig, debug }) {
65
+ if (!debug) {
66
+ return;
67
+ }
68
+ logSubHeader(logs, 'Resolved config');
69
+ logObject(logs, cleanupConfig(netlifyConfig));
70
+ };
71
+ export const logConfigOnUpdate = function ({ logs, netlifyConfig, debug }) {
72
+ if (!debug) {
73
+ return;
74
+ }
75
+ logSubHeader(logs, 'Updated config');
76
+ logObject(logs, cleanupConfig(netlifyConfig));
77
+ };
78
+ export const logConfigOnError = function ({ logs, netlifyConfig, severity }) {
79
+ if (netlifyConfig === undefined || severity === 'none') {
80
+ return;
81
+ }
82
+ logMessage(logs, THEME.errorSubHeader('Resolved config'));
83
+ logObject(logs, cleanupConfig(netlifyConfig));
84
+ };
85
+ export const logContext = function (logs, context) {
86
+ if (context === undefined) {
87
+ return;
88
+ }
89
+ logSubHeader(logs, 'Context');
90
+ logMessage(logs, context);
91
+ };
@@ -0,0 +1,51 @@
1
+ import ansiEscapes from 'ansi-escapes';
2
+ import prettyMs from 'pretty-ms';
3
+ import { getFullErrorInfo } from '../../error/parse/parse.js';
4
+ import { serializeLogError } from '../../error/parse/serialize_log.js';
5
+ import { roundTimerToMillisecs } from '../../time/measure.js';
6
+ import { ROOT_PACKAGE_JSON } from '../../utils/json.js';
7
+ import { getLogHeaderFunc } from '../header_func.js';
8
+ import { log, logMessage, logWarning, logHeader, logSubHeader, logWarningArray } from '../logger.js';
9
+ import { logOldCliVersionError } from '../old_version.js';
10
+ import { THEME } from '../theme.js';
11
+ import { logConfigOnError } from './config.js';
12
+ export const logBuildStart = function (logs) {
13
+ logHeader(logs, 'Netlify Build');
14
+ logSubHeader(logs, 'Version');
15
+ logMessage(logs, `${ROOT_PACKAGE_JSON.name} ${ROOT_PACKAGE_JSON.version}`);
16
+ };
17
+ export const logBuildError = function ({ error, netlifyConfig, mode, logs, debug, testOpts }) {
18
+ const fullErrorInfo = getFullErrorInfo({ error, colors: true, debug });
19
+ const { severity } = fullErrorInfo;
20
+ const { title, body } = serializeLogError({ fullErrorInfo });
21
+ const logHeaderFunc = getLogHeaderFunc(error);
22
+ logHeaderFunc(logs, title);
23
+ logMessage(logs, `\n${body}\n`);
24
+ logConfigOnError({ logs, netlifyConfig, severity });
25
+ logOldCliVersionError({ mode, testOpts });
26
+ };
27
+ export const logBuildSuccess = function (logs) {
28
+ logHeader(logs, 'Netlify Build Complete');
29
+ logMessage(logs, '');
30
+ };
31
+ export const logTimer = function (logs, durationNs, timerName, systemLog) {
32
+ const durationMs = roundTimerToMillisecs(durationNs);
33
+ const duration = prettyMs(durationMs);
34
+ log(logs, THEME.dimWords(`(${timerName} completed in ${duration})`));
35
+ systemLog(`Build step duration: ${timerName} completed in ${durationMs}ms`);
36
+ };
37
+ export const logMissingSideFile = function (logs, sideFile, publish) {
38
+ logWarning(logs, `
39
+ A "${sideFile}" file is present in the repository but is missing in the publish directory "${publish}".`);
40
+ };
41
+ // @todo use `terminal-link` (https://github.com/sindresorhus/terminal-link)
42
+ // instead of `ansi-escapes` once
43
+ // https://github.com/jamestalmage/supports-hyperlinks/pull/12 is fixed
44
+ export const logLingeringProcesses = function (logs, commands) {
45
+ logWarning(logs, `
46
+ The build completed successfully, but the following processes were still running:
47
+ `);
48
+ logWarningArray(logs, commands);
49
+ logWarning(logs, `
50
+ These processes have been terminated. In case this creates a problem for your build, refer to this ${ansiEscapes.link('article', 'https://answers.netlify.com/t/support-guide-how-to-address-the-warning-message-related-to-terminating-processes-in-builds/35277')} for details about why this process termination happens and how to fix it.`);
51
+ };
@@ -0,0 +1,75 @@
1
+ import path from 'path';
2
+ import { log, logArray, logErrorSubHeader, logWarningSubHeader } from '../logger.js';
3
+ import { THEME } from '../theme.js';
4
+ const logBundleResultFunctions = ({ functions, headerMessage, logs, error }) => {
5
+ const functionNames = functions.map(({ path: functionPath }) => path.basename(functionPath));
6
+ if (error) {
7
+ logErrorSubHeader(logs, headerMessage);
8
+ }
9
+ else {
10
+ logWarningSubHeader(logs, headerMessage);
11
+ }
12
+ logArray(logs, functionNames);
13
+ };
14
+ export const logBundleResults = ({ logs, results = [] }) => {
15
+ const resultsWithErrors = results.filter(({ bundlerErrors }) => bundlerErrors && bundlerErrors.length !== 0);
16
+ const resultsWithWarnings = results.filter(({ bundler, bundlerWarnings }) => bundler === 'esbuild' && bundlerWarnings && bundlerWarnings.length !== 0);
17
+ const modulesWithDynamicImports = [
18
+ ...new Set(results.flatMap((result) => result.nodeModulesWithDynamicImports || [])),
19
+ ];
20
+ if (resultsWithErrors.length !== 0) {
21
+ logBundleResultFunctions({
22
+ functions: resultsWithErrors,
23
+ headerMessage: 'Failed to bundle functions with selected bundler (fallback used):',
24
+ logs,
25
+ error: true,
26
+ });
27
+ }
28
+ if (resultsWithWarnings.length !== 0) {
29
+ logBundleResultFunctions({
30
+ functions: resultsWithWarnings,
31
+ headerMessage: 'Functions bundled with warnings:',
32
+ logs,
33
+ error: false,
34
+ });
35
+ }
36
+ if (modulesWithDynamicImports.length !== 0) {
37
+ logModulesWithDynamicImports({ logs, modulesWithDynamicImports });
38
+ }
39
+ };
40
+ export const logFunctionsNonExistingDir = function (logs, relativeFunctionsSrc) {
41
+ log(logs, `The Netlify Functions setting targets a non-existing directory: ${relativeFunctionsSrc}`);
42
+ };
43
+ // Print the list of Netlify Functions about to be bundled
44
+ export const logFunctionsToBundle = function ({ logs, userFunctions, userFunctionsSrc, userFunctionsSrcExists, internalFunctions, internalFunctionsSrc, type = 'Functions', }) {
45
+ if (internalFunctions.length !== 0) {
46
+ log(logs, `Packaging ${type} from ${THEME.highlightWords(internalFunctionsSrc)} directory:`);
47
+ logArray(logs, internalFunctions, { indent: false });
48
+ }
49
+ if (!userFunctionsSrcExists) {
50
+ return;
51
+ }
52
+ if (userFunctions.length === 0) {
53
+ log(logs, `No ${type} were found in ${THEME.highlightWords(userFunctionsSrc)} directory`);
54
+ return;
55
+ }
56
+ if (internalFunctions.length !== 0) {
57
+ log(logs, '');
58
+ }
59
+ log(logs, `Packaging ${type} from ${THEME.highlightWords(userFunctionsSrc)} directory:`);
60
+ logArray(logs, userFunctions, { indent: false });
61
+ };
62
+ const logModulesWithDynamicImports = ({ logs, modulesWithDynamicImports }) => {
63
+ const externalNodeModules = modulesWithDynamicImports.map((moduleName) => `"${moduleName}"`).join(', ');
64
+ logWarningSubHeader(logs, `The following Node.js modules use dynamic expressions to include files:`);
65
+ logArray(logs, modulesWithDynamicImports);
66
+ log(logs, `\n Because files included with dynamic expressions aren't bundled with your serverless functions by default,
67
+ this may result in an error when invoking a function. To resolve this error, you can mark these Node.js
68
+ modules as external in the [functions] section of your \`netlify.toml\` configuration file:
69
+
70
+ [functions]
71
+ external_node_modules = [${externalNodeModules}]
72
+
73
+ Visit https://ntl.fyi/dynamic-imports for more information.
74
+ `);
75
+ };