diff --git a/README.md b/README.md index 018a76d..b1c4a00 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ fluentci # Run the pipeline fluentci --help Usage: fluentci [pipeline] [jobs...] -Version: 0.12.4 +Version: 0.12.5 Description: diff --git a/flake.nix b/flake.nix index 2fd4a8a..31ab0e0 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,7 @@ packages.default = pkgs.deno2nix.mkExecutable { pname = "fluentci"; - version = "0.12.4"; + version = "0.12.5"; src = ./.; lockfile = "./deno.lock"; diff --git a/src/cmd/publish.ts b/src/cmd/publish.ts index 6a5ffee..6a3c550 100644 --- a/src/cmd/publish.ts +++ b/src/cmd/publish.ts @@ -37,7 +37,7 @@ const publish = async ( Deno.exit(1); } - if (paths.length > 1000) { + if (paths.length > 1000 && !options.wasm) { console.error( `A FluentCI package can contain a maximum of ${brightGreen( "1000 files" diff --git a/src/consts.ts b/src/consts.ts index 3bfa2a2..8d28885 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,6 +1,6 @@ import { dir } from "../deps.ts"; -export const VERSION = "0.12.4"; +export const VERSION = "0.12.5"; export const BASE_URL = "https://api.fluentci.io/v1";