Releases: jespertheend/dev
Releases · jespertheend/dev
v0.4.0
v0.3.0
feat: Add 'addTsNocheck' action
v0.2.1
fix: Upgrade npm_fetcher to v0.1.0
v0.2.0
chore: Upgrade to deno 1.29.1
v0.1.0
This release contains:
- Support for ignoring actions
You can now ignore actions by using theignore: true
property:
await dev({
actions: [
{
type: "someAction",
ignore: true,
},
],
});
This way you can programmatically determine if actions should be run depending on certain conditions.
- Add esmify action
This action allows you to bundle commonjs modules into a esm file.
It uses rollup internally and is mostly meant for transpiling npm packages to something you can use in the browser.
For example:
await dev([
{
type: "downloadNpmPackage",
package: "rollup@2.60.0",
},
{
type: "esmify",
entryPointPath: "npm_packages/rollup/2.60.0/dist/rollup.browser.js",
outputPath: "deps/rollup.browser.js",
},
]);
This downloads the rollup
package and saves it as an es module in deps/rollup.browser.js
.
v0.0.2
Renamed "donwloadNpmPackage"
to "downloadNpmPackage"
.
Renamed name:
to type:
in action configurations.
v0.0.1
Add plugin for downloading npm packages