diff --git a/gulpfile.coffee b/gulpfile.coffee index d1adf9b..22f20a3 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -2,7 +2,6 @@ import gulp from "gulp" import {spawn} from "node:child_process" import {readdir, rm} from "node:fs/promises" import {join} from "node:path" -import {env} from "node:process" # Builds the project. export build = -> @@ -26,7 +25,6 @@ export publish = -> # Runs the test suite. export test = -> - env.NODE_ENV = "test" await npx "coffee", "--compile", "--map", "--no-header", "--output", "lib", "src", "test" await run "node", "--enable-source-maps", "--test"