Task Definitions: None
Template Definitions: 'jspm'
Batcher Defintions: None
Applies the JSPM Generator to an HTML file to populate its import map for module loading using the JSPM Generator htmlGenerate API.
Alternatively, when targetting an .importmap
import map file, will output the direct import map JSON.
auto-install
(Boolean, default:true
): Whether to automatically install@babel/core
,@babel/cli
and the used presets or plugins with npm if not present (using the npm extension). The global npm extensionauto-install
option will take precedence here if not otherwise set.env
(String[], default:['browser', 'production', 'module']
): The list of environment exports conditions to build.es-module-shims
(String): Custom URL to use for the ES Module Shims import maps polyfill. Defaults to the latest version on JSPM.integrity
(Boolean, default:false
): Whether to inject integrity metadata for the module graph (relies on preload tags).preload
(Boolean, default:false
): Whether to injectmodulepreload
tags for the static module graph for performance.whitespace
(Boolean, default:true
): Set to false to serialize the import map without whitespace for minified HTML....generate-opts
(Dictionary): Any custom JSPM Generator options are supported via object spread.
chompfile.toml
version = 0.1
extensions = ['[email protected]:jspm']
# Generate an import map for a browser HTML page
[[task]]
name = 'build:html'
target = 'public/app.html'
dep = 'src/app.html'
template = 'jspm'
[task.template-options]
env = ['browser', 'production', 'module']
preload = true
integrity = true
# Generate an import map for a Deno app
[[task]]
name = 'build:deno-importmap'
target = 'deno.importmap'
dep = 'deno-app.js'
template = 'jspm'
[task.template-options]
env = ['deno', 'production', 'module']
Ejection will eject the task with the JS wrapper API for JSPM generator, without the auto install feature.
This extension is actively supported by JSPM and will continue to track JSPM best practices.