Skip to content

Commit

Permalink
Merge pull request #35 from fluentci-io/fix/skip-files-limit-if-wasm
Browse files Browse the repository at this point in the history
fix: skip files limit on publish wasm plugin
  • Loading branch information
tsirysndr authored Apr 10, 2024
2 parents 194ccf2 + f2350b5 commit 2349170
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fluentci # Run the pipeline
fluentci --help

Usage: fluentci [pipeline] [jobs...]
Version: 0.12.4
Version: 0.12.5

Description:

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

packages.default = pkgs.deno2nix.mkExecutable {
pname = "fluentci";
version = "0.12.4";
version = "0.12.5";

src = ./.;
lockfile = "./deno.lock";
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down

0 comments on commit 2349170

Please sign in to comment.