Don't echo the mkdir command

This commit is contained in:
Oliver Akins 2022-03-15 23:10:00 -06:00
parent a7a7560201
commit 05a5bfc3af
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -6,12 +6,12 @@ CJS_LOCATION=./cjs
all: esm cjs all: esm cjs
esm: esm:
mkdir $(ESM_LOCATION) --parents @mkdir $(ESM_LOCATION) --parents
tsc --module es6 --outDir $(ESM_LOCATION) tsc --module es6 --outDir $(ESM_LOCATION)
cp ./package.template.json $(ESM_LOCATION)/package.json cp ./package.template.json $(ESM_LOCATION)/package.json
cjs: cjs:
mkdir $(CJS_LOCATION) --parents @mkdir $(CJS_LOCATION) --parents
tsc --module commonjs --outDir $(CJS_LOCATION) tsc --module commonjs --outDir $(CJS_LOCATION)
cp ./package.template.json $(CJS_LOCATION)/package.json cp ./package.template.json $(CJS_LOCATION)/package.json