8000 Releases · jespertheend/dev · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: jespertheend/dev

v0.4.0

25 Sep 11:18
Compare
Choose a tag to compare
test: Add deno.land fetch permission

v0.3.0

16 Mar 16:13
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release
feat: Add 'addTsNocheck' action

v0.2.1

16 Jan 13:52
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release
fix: Upgrade npm_fetcher to v0.1.0

v0.2.0

28 Dec 15:39
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
chore: Upgrade to deno 1.29.1

v0.1.0

25 Sep 19:52
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

This release contains:

  • Support for ignoring actions
    You can now ignore actions by using the ignore: 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

10 Sep 18:44
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

Renamed "donwloadNpmPackage" to "downloadNpmPackage".
Renamed name: to type: in action configurations.

v0.0.1

10 Sep 18:22
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release
Add plugin for downloading npm packages
0