mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 18:12:59 -05:00

Closes #18296. Adds a `--frozen` (alias `--frozen-lockfile`) flag that errors out if the lockfile is out of date. This is useful for running in CI (where an out of date lockfile is usually a mistake) or to prevent accidental changes in dependencies. 
2 lines
95 B
TypeScript
2 lines
95 B
TypeScript
import { subtract } from "npm:@denotest/subtract@1";
|
|
console.log(`3 - 2 = ${subtract(3, 2)}`);
|