@netlify/build 29.20.6 → 29.20.7
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/lib/core/bin.d.ts +2 -0
- package/lib/core/bin.js +2 -2
- package/lib/core/build.d.ts +84 -0
- package/lib/core/config.d.ts +65 -0
- package/lib/core/constants.d.ts +26 -0
- package/lib/core/dev.d.ts +18 -0
- package/lib/core/dry.d.ts +8 -0
- package/lib/core/feature_flags.d.ts +3 -0
- package/lib/core/flags.d.ts +230 -0
- package/lib/core/lingering.d.ts +7 -0
- package/lib/core/main.d.ts +14 -0
- package/lib/core/main.js +1 -3
- package/lib/core/missing_side_file.d.ts +9 -0
- package/lib/core/normalize_flags.d.ts +38 -0
- package/lib/core/report_metrics.d.ts +12 -0
- package/lib/core/severity.d.ts +38 -0
- package/lib/core/types.d.ts +83 -0
- package/lib/core/user_node_version.d.ts +1 -0
- package/lib/env/changes.d.ts +6 -0
- package/lib/env/main.d.ts +4 -0
- package/lib/env/metadata.d.ts +1 -0
- package/lib/error/api.d.ts +1 -0
- package/lib/error/build.d.ts +7 -0
- package/lib/error/cancel.d.ts +4 -0
- package/lib/error/colors.d.ts +1 -0
- package/lib/error/handle.d.ts +17 -0
- package/lib/error/info.d.ts +6 -0
- package/lib/error/monitor/location.d.ts +1 -0
- package/lib/error/monitor/normalize.d.ts +1 -0
- package/lib/error/monitor/print.d.ts +22 -0
- package/lib/error/monitor/report.d.ts +7 -0
- package/lib/error/monitor/start.d.ts +7 -0
- package/lib/error/parse/clean_stack.d.ts +5 -0
- package/lib/error/parse/location.d.ts +5 -0
- package/lib/error/parse/normalize.d.ts +1 -0
- package/lib/error/parse/parse.d.ts +39 -0
- package/lib/error/parse/plugin.d.ts +9 -0
- package/lib/error/parse/properties.d.ts +5 -0
- package/lib/error/parse/serialize_log.d.ts +14 -0
- package/lib/error/parse/serialize_status.d.ts +16 -0
- package/lib/error/parse/stack.d.ts +11 -0
- package/lib/error/report.d.ts +6 -0
- package/lib/error/type.d.ts +3 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +6 -0
- package/lib/install/functions.d.ts +1 -0
- package/lib/install/local.d.ts +8 -0
- package/lib/install/main.d.ts +9 -0
- package/lib/install/missing.d.ts +12 -0
- package/lib/log/colors.d.ts +19 -0
- package/lib/log/description.d.ts +3 -0
- package/lib/log/header.d.ts +2 -0
- package/lib/log/header_func.d.ts +2 -0
- package/lib/log/logger.d.ts +32 -0
- package/lib/log/messages/compatibility.d.ts +6 -0
- package/lib/log/messages/config.d.ts +21 -0
- package/lib/log/messages/core.d.ts +12 -0
- package/lib/log/messages/core_steps.d.ts +21 -0
- package/lib/log/messages/dry.d.ts +18 -0
- package/lib/log/messages/install.d.ts +4 -0
- package/lib/log/messages/ipc.d.ts +7 -0
- package/lib/log/messages/mutations.d.ts +16 -0
- package/lib/log/messages/plugins.d.ts +8 -0
- package/lib/log/messages/status.d.ts +1 -0
- package/lib/log/messages/steps.d.ts +10 -0
- package/lib/log/serialize.d.ts +2 -0
- package/lib/log/stream.d.ts +10 -0
- package/lib/log/theme.d.ts +19 -0
- package/lib/plugins/child/diff.d.ts +2 -0
- package/lib/plugins/child/error.d.ts +2 -0
- package/lib/plugins/child/lazy.d.ts +1 -0
- package/lib/plugins/child/load.d.ts +14 -0
- package/lib/plugins/child/logic.d.ts +5 -0
- package/lib/plugins/child/main.d.ts +1 -0
- package/lib/plugins/child/run.d.ts +18 -0
- package/lib/plugins/child/status.d.ts +1 -0
- package/lib/plugins/child/typescript.d.ts +2 -0
- package/lib/plugins/child/utils.d.ts +32 -0
- package/lib/plugins/child/validate.d.ts +1 -0
- package/lib/plugins/compatibility.d.ts +33 -0
- package/lib/plugins/error.d.ts +4 -0
- package/lib/plugins/events.d.ts +5 -0
- package/lib/plugins/expected_version.d.ts +10 -0
- package/lib/plugins/internal.d.ts +1 -0
- package/lib/plugins/ipc.d.ts +10 -0
- package/lib/plugins/list.d.ts +9 -0
- package/lib/plugins/load.d.ts +9 -0
- package/lib/plugins/manifest/check.d.ts +10 -0
- package/lib/plugins/manifest/load.d.ts +7 -0
- package/lib/plugins/manifest/main.d.ts +18 -0
- package/lib/plugins/manifest/path.d.ts +5 -0
- package/lib/plugins/manifest/validate.d.ts +1 -0
- package/lib/plugins/node_version.d.ts +22 -0
- package/lib/plugins/options.d.ts +18 -0
- package/lib/plugins/pinned_version.d.ts +24 -0
- package/lib/plugins/resolve.d.ts +17 -0
- package/lib/plugins/spawn.d.ts +2 -0
- package/lib/plugins_core/add.d.ts +13 -0
- package/lib/plugins_core/build_command.d.ts +36 -0
- package/lib/plugins_core/deploy/buildbot_client.d.ts +12 -0
- package/lib/plugins_core/deploy/index.d.ts +30 -0
- package/lib/plugins_core/edge_functions/index.d.ts +27 -0
- package/lib/plugins_core/edge_functions/lib/error.d.ts +1 -0
- package/lib/plugins_core/edge_functions/validate_manifest/validate_edge_functions_manifest.d.ts +2 -0
- package/lib/plugins_core/functions/error.d.ts +1 -0
- package/lib/plugins_core/functions/feature_flags.d.ts +2 -0
- package/lib/plugins_core/functions/index.d.ts +53 -0
- package/lib/plugins_core/functions/utils.d.ts +11 -0
- package/lib/plugins_core/functions/zisi.d.ts +22 -0
- package/lib/plugins_core/functions_install/index.d.ts +6 -0
- package/lib/plugins_core/list.d.ts +8 -0
- package/lib/plugins_core/save_artifacts/index.d.ts +26 -0
- package/lib/plugins_core/secrets_scanning/index.d.ts +16 -0
- package/lib/plugins_core/secrets_scanning/utils.d.ts +67 -0
- package/lib/report/statsd.d.ts +29 -0
- package/lib/status/add.d.ts +9 -0
- package/lib/status/colors.d.ts +1 -0
- package/lib/status/load_error.d.ts +6 -0
- package/lib/status/report.d.ts +14 -0
- package/lib/status/success.d.ts +5 -0
- package/lib/steps/core_step.d.ts +50 -0
- package/lib/steps/error.d.ts +48 -0
- package/lib/steps/get.d.ts +8 -0
- package/lib/steps/plugin.d.ts +39 -0
- package/lib/steps/return.d.ts +55 -0
- package/lib/steps/run_core_steps.d.ts +5 -0
- package/lib/steps/run_step.d.ts +52 -0
- package/lib/steps/run_steps.d.ts +44 -0
- package/lib/steps/update_config.d.ts +23 -0
- package/lib/telemetry/main.d.ts +18 -0
- package/lib/time/aggregate.d.ts +1 -0
- package/lib/time/main.d.ts +16 -0
- package/lib/time/measure.d.ts +10 -0
- package/lib/time/report.d.ts +14 -0
- package/lib/tracing/main.d.ts +29 -0
- package/lib/utils/errors.d.ts +1 -0
- package/lib/utils/json.d.ts +7 -0
- package/lib/utils/omit.d.ts +1 -0
- package/lib/utils/package.d.ts +10 -0
- package/lib/utils/remove_falsy.d.ts +1 -0
- package/lib/utils/resolve.d.ts +8 -0
- package/lib/utils/runtime.d.ts +1 -0
- package/lib/utils/semver.d.ts +2 -0
- package/package.json +9 -12
- package/types/config/inputs.d.ts +1 -1
- package/types/config/netlify_config.d.ts +4 -4
- package/types/index.d.ts +7 -7
- package/types/netlify_event_handler.d.ts +2 -2
- package/types/netlify_plugin.d.ts +2 -2
- package/types/netlify_plugin_options.d.ts +5 -5
- package/types/options/netlify_plugin_cache_util.d.ts +1 -1
- package/types/options/netlify_plugin_run_util.d.ts +1 -1
- package/types/options/netlify_plugin_utils.d.ts +6 -6
- package/types/options/index.d.ts +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { NetlifyPluginBuildUtil } from './netlify_plugin_build_util'
|
|
2
|
-
import { NetlifyPluginCacheUtil } from './netlify_plugin_cache_util'
|
|
3
|
-
import { NetlifyPluginFunctionsUtil } from './netlify_plugin_functions_util'
|
|
4
|
-
import { NetlifyPluginGitUtil } from './netlify_plugin_git_util'
|
|
5
|
-
import { NetlifyPluginRunUtil } from './netlify_plugin_run_util'
|
|
6
|
-
import { NetlifyPluginStatusUtil } from './netlify_plugin_status_util'
|
|
1
|
+
import type { NetlifyPluginBuildUtil } from './netlify_plugin_build_util.d.ts'
|
|
2
|
+
import type { NetlifyPluginCacheUtil } from './netlify_plugin_cache_util.d.ts'
|
|
3
|
+
import type { NetlifyPluginFunctionsUtil } from './netlify_plugin_functions_util.d.ts'
|
|
4
|
+
import type { NetlifyPluginGitUtil } from './netlify_plugin_git_util.d.ts'
|
|
5
|
+
import type { NetlifyPluginRunUtil } from './netlify_plugin_run_util.d.ts'
|
|
6
|
+
import type { NetlifyPluginStatusUtil } from './netlify_plugin_status_util.d.ts'
|
|
7
7
|
|
|
8
8
|
export interface NetlifyPluginUtils {
|
|
9
9
|
build: NetlifyPluginBuildUtil
|
package/types/options/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { NetlifyPluginUtils } from './netlify_plugin_utils'
|