Skip to content

Commit

Permalink
chore: merge pull request #7 from websublime/fix/canonical-paths
Browse files Browse the repository at this point in the history
fix: canonical paths from tools crate
  • Loading branch information
miguelramos committed Jul 19, 2024
2 parents d247147 + b1243f0 commit a75d00c
Show file tree
Hide file tree
Showing 6 changed files with 598 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Miguel Ramos <miguel.ramos@websublime.dev>"]
edition = "2021"
name = "websublime_workspace-tools"
version = "0.7.2"
version = "0.7.3"
exclude = ["tests/*", "examples/*", "node_modules/*", "target/*"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -13,7 +13,7 @@ crate-type = ["cdylib"]
[dependencies]
napi-derive = "2.16.9"
napi = { version = "2.16.8", default-features = false, features = ["napi9", "serde-json", "tokio_rt"] }
workspace-node-tools = { version = "1.0.4", features = ["napi", "napi-derive"] }
workspace-node-tools = { version = "1.0.6", features = ["napi", "napi-derive"] }

[build-dependencies]
napi-build = "2"
Expand Down
5 changes: 4 additions & 1 deletion __test__/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import test from 'ava';

import { getDefinedPackageManager, PackageManager } from '../index';
import {
getDefinedPackageManager,
PackageManager
} from '../index';

test('get defined package manager', (t) => {
t.is(getDefinedPackageManager(), PackageManager.Pnpm);
Expand Down
Loading

0 comments on commit a75d00c

Please sign in to comment.