Skip to content

Commit

Permalink
0.2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Apr 14, 2024
1 parent cc764d8 commit d83cf4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion node-chomp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chomp",
"version": "0.2.17",
"version": "0.2.18",
"description": "'JS Make' - parallel task runner CLI for the frontend ecosystem with a JS extension system",
"bin": {
"chomp": "index.js"
Expand Down
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ mod task;

use std::path::PathBuf;

const CHOMP_CORE: &str = "https://ga.jspm.io/npm:@chompbuild/[email protected].28/";
const CHOMP_CORE: &str = "https://ga.jspm.io/npm:@chompbuild/[email protected].31/";

const CHOMP_INIT: &str = r#"version = 0.1
Expand All @@ -69,9 +69,9 @@ fn uri_parse(uri_str: &str) -> Option<Uri> {
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(not(debug_assertions))]
let version = "0.2.17";
let version = "0.2.18";
#[cfg(debug_assertions)]
let version = "0.2.17-debug";
let version = "0.2.18-debug";
let matches = Command::new("Chomp")
.version(version)
.arg(
Expand Down

0 comments on commit d83cf4c

Please sign in to comment.