@staticbolt/core 1.0.0-beta.30 → 1.0.0-beta.31
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/README.md +2 -1
- package/lib/cli/index.mjs +31 -8
- package/lib/cli/index.mjs.map +1 -1
- package/lib/{common-DUFKS3lW.mjs → common-D1QTZ8ra.mjs} +2 -2
- package/lib/{common-DUFKS3lW.mjs.map → common-D1QTZ8ra.mjs.map} +1 -1
- package/lib/index.d.mts +151 -3
- package/lib/index.d.mts.map +1 -1
- package/lib/index.mjs +3 -3
- package/lib/index.mjs.map +1 -1
- package/lib/{load-config-D-FtbUws.mjs → load-config-CsbiJ01A.mjs} +2 -2
- package/lib/{load-config-D-FtbUws.mjs.map → load-config-CsbiJ01A.mjs.map} +1 -1
- package/lib/plugins/index.d.mts +16 -7
- package/lib/plugins/index.d.mts.map +1 -1
- package/lib/plugins/index.mjs +739 -206
- package/lib/plugins/index.mjs.map +1 -1
- package/lib/{utilities-D0KXIZ-B.mjs → utilities-jK4uUZBV.mjs} +85 -26
- package/lib/utilities-jK4uUZBV.mjs.map +1 -0
- package/package.json +8 -4
- package/lib/utilities-D0KXIZ-B.mjs.map +0 -1
package/lib/plugins/index.d.mts
CHANGED
|
@@ -43,7 +43,8 @@ interface AnalyzeOutputOptions {
|
|
|
43
43
|
* - Reachability is walked from HTML pages only, so anything reachable through another entry point counts as unused.
|
|
44
44
|
* - HTML files are never listed as unused or deleted.
|
|
45
45
|
* - Empty directories under the output are removed on every run, not just when deleting unused files.
|
|
46
|
-
* - "exclude" is matched against paths relative to the output directory and applies to
|
|
46
|
+
* - "exclude" is matched against paths relative to the output directory and applies to every report, so a file a later plugin
|
|
47
|
+
* writes (a service worker, say) can be referenced without being reported missing.
|
|
47
48
|
*/
|
|
48
49
|
declare function analyzeOutputPlugin(options?: AnalyzeOutputOptions): Plugin;
|
|
49
50
|
//#endregion
|
|
@@ -970,7 +971,7 @@ interface HtmlBundleStyleOptions {
|
|
|
970
971
|
*/
|
|
971
972
|
declare function htmlBundleStylePlugin(options?: HtmlBundleStyleOptions): Plugin;
|
|
972
973
|
//#endregion
|
|
973
|
-
//#region src/plugins/html-env-only/html-
|
|
974
|
+
//#region src/plugins/html-env-only/html-environment-only-plugin.d.ts
|
|
974
975
|
interface HtmlEnvOnlyOptions {
|
|
975
976
|
/**
|
|
976
977
|
* The HTML attribute name that marks a tag as development-only.
|
|
@@ -1206,7 +1207,7 @@ interface HtmlInsertOptions {
|
|
|
1206
1207
|
*/
|
|
1207
1208
|
declare function htmlInsertPlugin(options?: HtmlInsertOptions): Plugin;
|
|
1208
1209
|
//#endregion
|
|
1209
|
-
//#region src/plugins/html-layout/
|
|
1210
|
+
//#region src/plugins/html-layout/options.d.ts
|
|
1210
1211
|
interface HtmlLayoutOptions {
|
|
1211
1212
|
/**
|
|
1212
1213
|
* Tag names registered as valid HTML elements. Each name is also the required file suffix — e.g. `"layout"` means files must
|
|
@@ -1270,6 +1271,8 @@ interface HtmlLayoutOptions {
|
|
|
1270
1271
|
*/
|
|
1271
1272
|
removeAttributeAttribute?: string;
|
|
1272
1273
|
}
|
|
1274
|
+
//#endregion
|
|
1275
|
+
//#region src/plugins/html-layout/html-layout-plugin.d.ts
|
|
1273
1276
|
/**
|
|
1274
1277
|
* Composes pages out of reusable "<layout>" and "<part>" files (tag names configurable via HtmlLayoutOptions). The tag is
|
|
1275
1278
|
* replaced by the file it points at, the tag's children are distributed into the file's "<slot>" elements, and the scripts and
|
|
@@ -1542,13 +1545,19 @@ declare function coreSvgPlugin(): Plugin;
|
|
|
1542
1545
|
declare function coreWebManifestPlugin(): Plugin;
|
|
1543
1546
|
//#endregion
|
|
1544
1547
|
//#region src/plugins/core-plugins/development-server/development-server-plugin.d.ts
|
|
1548
|
+
/** What the serve command hands over through `app.pluginData`, taking precedence over the plugin options for that run. */
|
|
1549
|
+
interface DevelopmentServerOverrides {
|
|
1550
|
+
host?: boolean | string;
|
|
1551
|
+
}
|
|
1552
|
+
declare const DEVELOPMENT_SERVER_OVERRIDES = "development-server";
|
|
1545
1553
|
interface DevelopmentServerOptions {
|
|
1546
1554
|
/**
|
|
1547
|
-
*
|
|
1555
|
+
* Where the dev server listens. `true` listens on every address, so the site is reachable from other devices on the network; a
|
|
1556
|
+
* string is a specific address to listen on. The `--host` flag of the serve command turns this on for one run.
|
|
1548
1557
|
*
|
|
1549
|
-
* @default
|
|
1558
|
+
* @default false
|
|
1550
1559
|
*/
|
|
1551
|
-
host?: string;
|
|
1560
|
+
host?: boolean | string;
|
|
1552
1561
|
/**
|
|
1553
1562
|
* The dev server port.
|
|
1554
1563
|
*
|
|
@@ -1787,5 +1796,5 @@ interface ServeCliPluginOptions {
|
|
|
1787
1796
|
*/
|
|
1788
1797
|
declare function serveCliPlugin(options?: ServeCliPluginOptions): Plugin;
|
|
1789
1798
|
//#endregion
|
|
1790
|
-
export { type AnalyzeOutputOptions, type BuildCliPluginOptions, type BundlePackagesOptions, type ConvertFontsCliPluginOptions, type ConvertImageOptions, type CopyAssetsOptions, type CoreHtmlPluginOptions, type CoreMarkdownPluginOptions, type CssLinear, type CustomEasePluginOptions, type DevelopmentServerOptions, type GenerateFontFacesCliPluginOptions, type HtmlBuildTimeScriptOptions, type HtmlBundleScriptOptions, type HtmlBundleStyleOptions, type HtmlEnvOnlyOptions, type HtmlFragmentOptions, type HtmlIifeScriptOptions, type HtmlInlineScriptOptions, type HtmlInlineStyleOptions, type HtmlInlineSvgOptions, HtmlInlineSvgPlugin, type HtmlInlineTextOptions, type HtmlInsertOptions, type HtmlLayoutOptions, type HtmlMarkdownOptions, type HtmlPagesOptions, type HtmlPreloadOptions, type I18nPluginOptions, type ImageFormat, type ImagePreset, type ImportAsStringOptions, type LoadSourcesPluginOptions, type MaterialYouCliPluginOptions, type RobotsTextOptions, type ServeCliPluginOptions, type ServiceWorkerOptions, type SitemapOptions, type TransformCssOptions, type TransformJsPluginOptions, type WebManifestOptions, type WriteFilesOptions, analyzeOutputPlugin, buildCliPlugin, bundlePackagesPlugin, convertFontsCliPlugin, convertImagePlugin, copyAssetsPlugin, coreHtmlPlugin, coreMarkdownPlugin, coreScriptPlugin, coreStylePlugin, coreSvgPlugin, coreWebManifestPlugin, customEasePlugin, developmentServerPlugin, generateFontFacesCliPlugin, htmlBuildTimeScript, htmlBundleScriptPlugin, htmlBundleStylePlugin, htmlEnvOnlyPlugin, htmlFragmentPlugin, htmlIifeScriptPlugin, htmlInlineScriptPlugin, htmlInlineStylePlugin, htmlInlineTextPlugin, htmlInsertPlugin, htmlLayoutPlugin, htmlMarkdownPlugin, htmlMergeStylesPlugin, htmlPagesPlugin, htmlPreloadPlugin, svgoPlugin as htmlSvgoPlugin, type svgoPlugin, i18nPlugin, importAsStringPlugin, type import_as_string, loadSourcesPlugin, materialYouCliPlugin, robotsTextPlugin, serveCliPlugin, serviceWorkerPlugin, sitemapPlugin, type svgoOptions, transformCssPlugin, transformJsPlugin, webManifestPlugin, writeFilesPlugin };
|
|
1799
|
+
export { type AnalyzeOutputOptions, type BuildCliPluginOptions, type BundlePackagesOptions, type ConvertFontsCliPluginOptions, type ConvertImageOptions, type CopyAssetsOptions, type CoreHtmlPluginOptions, type CoreMarkdownPluginOptions, type CssLinear, type CustomEasePluginOptions, type DEVELOPMENT_SERVER_OVERRIDES, type DevelopmentServerOptions, type DevelopmentServerOverrides, type GenerateFontFacesCliPluginOptions, type HtmlBuildTimeScriptOptions, type HtmlBundleScriptOptions, type HtmlBundleStyleOptions, type HtmlEnvOnlyOptions, type HtmlFragmentOptions, type HtmlIifeScriptOptions, type HtmlInlineScriptOptions, type HtmlInlineStyleOptions, type HtmlInlineSvgOptions, HtmlInlineSvgPlugin, type HtmlInlineTextOptions, type HtmlInsertOptions, type HtmlLayoutOptions, type HtmlMarkdownOptions, type HtmlPagesOptions, type HtmlPreloadOptions, type I18nPluginOptions, type ImageFormat, type ImagePreset, type ImportAsStringOptions, type LoadSourcesPluginOptions, type MaterialYouCliPluginOptions, type RobotsTextOptions, type ServeCliPluginOptions, type ServiceWorkerOptions, type SitemapOptions, type TransformCssOptions, type TransformJsPluginOptions, type WebManifestOptions, type WriteFilesOptions, analyzeOutputPlugin, buildCliPlugin, bundlePackagesPlugin, convertFontsCliPlugin, convertImagePlugin, copyAssetsPlugin, coreHtmlPlugin, coreMarkdownPlugin, coreScriptPlugin, coreStylePlugin, coreSvgPlugin, coreWebManifestPlugin, customEasePlugin, developmentServerPlugin, generateFontFacesCliPlugin, htmlBuildTimeScript, htmlBundleScriptPlugin, htmlBundleStylePlugin, htmlEnvOnlyPlugin, htmlFragmentPlugin, htmlIifeScriptPlugin, htmlInlineScriptPlugin, htmlInlineStylePlugin, htmlInlineTextPlugin, htmlInsertPlugin, htmlLayoutPlugin, htmlMarkdownPlugin, htmlMergeStylesPlugin, htmlPagesPlugin, htmlPreloadPlugin, svgoPlugin as htmlSvgoPlugin, type svgoPlugin, i18nPlugin, importAsStringPlugin, type import_as_string, loadSourcesPlugin, materialYouCliPlugin, robotsTextPlugin, serveCliPlugin, serviceWorkerPlugin, sitemapPlugin, type svgoOptions, transformCssPlugin, transformJsPlugin, webManifestPlugin, writeFilesPlugin };
|
|
1791
1800
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/plugins/analyze-output/analyze-output-plugin.ts","../../src/plugins/bundle-packages/bundle-packages-plugin.ts","../../src/plugins/convert-images/convert-images-plugin.ts","../../src/plugins/copy-assets/copy-assets-plugin.ts","../../src/plugins/custom-ease/easing-functions/types.d.ts","../../src/plugins/custom-ease/custom-ease-plugin.ts","../../src/plugins/i18n/i18n-plugin.ts","../../src/plugins/import-as-string/types.ts","../../src/plugins/import-as-string/import-as-string-plugin.ts","../../src/plugins/load-sources/load-sources-plugin.ts","../../src/plugins/robots-text/robots-text-plugin.ts","../../src/plugins/service-worker/service-worker-plugin.ts","../../src/plugins/sitemap/sitemap-plugin.ts","../../src/plugins/svgo/svgo-plugin.ts","../../src/plugins/transform-css/transform-css-plugin.ts","../../src/plugins/transform-js/transform-js-plugin.ts","../../src/plugins/web-manifest/web-manifest-plugin.ts","../../src/plugins/write-files/write-files-plugin.ts","../../src/plugins/html-build-time-script/html-build-time-script.ts","../../src/plugins/html-bundle-script/html-bundle-script-plugin.ts","../../src/plugins/html-bundle-style/html-bundle-style-plugin.ts","../../src/plugins/html-env-only/html-
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/plugins/analyze-output/analyze-output-plugin.ts","../../src/plugins/bundle-packages/bundle-packages-plugin.ts","../../src/plugins/convert-images/convert-images-plugin.ts","../../src/plugins/copy-assets/copy-assets-plugin.ts","../../src/plugins/custom-ease/easing-functions/types.d.ts","../../src/plugins/custom-ease/custom-ease-plugin.ts","../../src/plugins/i18n/i18n-plugin.ts","../../src/plugins/import-as-string/types.ts","../../src/plugins/import-as-string/import-as-string-plugin.ts","../../src/plugins/load-sources/load-sources-plugin.ts","../../src/plugins/robots-text/robots-text-plugin.ts","../../src/plugins/service-worker/service-worker-plugin.ts","../../src/plugins/sitemap/sitemap-plugin.ts","../../src/plugins/svgo/svgo-plugin.ts","../../src/plugins/transform-css/transform-css-plugin.ts","../../src/plugins/transform-js/transform-js-plugin.ts","../../src/plugins/web-manifest/web-manifest-plugin.ts","../../src/plugins/write-files/write-files-plugin.ts","../../src/plugins/html-build-time-script/html-build-time-script.ts","../../src/plugins/html-bundle-script/html-bundle-script-plugin.ts","../../src/plugins/html-bundle-style/html-bundle-style-plugin.ts","../../src/plugins/html-env-only/html-environment-only-plugin.ts","../../src/plugins/html-fragment/html-fragment-plugin.ts","../../src/plugins/html-iife-script/html-iife-script-plugin.ts","../../src/plugins/html-inline-script/html-inline-script-plugin.ts","../../src/plugins/html-inline-style/html-inline-style-plugin.ts","../../src/plugins/html-inline-svg/html-inline-svg-plugin.ts","../../src/plugins/html-inline-text/html-inline-text-plugin.ts","../../src/plugins/html-insert/html-insert-plugin.ts","../../src/plugins/html-layout/options.ts","../../src/plugins/html-layout/html-layout-plugin.ts","../../src/plugins/html-markdown/html-markdown-plugin.ts","../../src/plugins/html-merge-styles/html-merge-styles-plugin.ts","../../src/plugins/html-pages/html-pages-plugin.ts","../../src/plugins/html-preload/html-preload-plugin.ts","../../src/plugins/core-plugins/html-metadata/html-metadata-plugin.ts","../../src/plugins/core-plugins/markdown-metadata/markdown-metadata-plugin.ts","../../src/plugins/core-plugins/script-metadata/script-metadata-plugin.ts","../../src/plugins/core-plugins/style-metadata/style-metadata-plugin.ts","../../src/plugins/core-plugins/svg-metadata/svg-metadata-plugin.ts","../../src/plugins/core-plugins/web-manifest-metadata/web-manifest-metadata-plugin.ts","../../src/plugins/core-plugins/development-server/development-server-plugin.ts","../../src/plugins/cli-plugins/build/build-cli-plugin.ts","../../src/plugins/cli-plugins/convert-fonts/convert-fonts-cli-plugin.ts","../../src/plugins/cli-plugins/generate-font-face/generate-font-face-cli-plugin.ts","../../src/plugins/cli-plugins/material-you/material-you/types.d.ts","../../src/plugins/cli-plugins/material-you/material-you-cli-plugin.ts","../../src/plugins/cli-plugins/serve/serve-cli-plugin.ts"],"mappings":"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"}
|