Don't echo the mkdir command
This commit is contained in:
parent
a7a7560201
commit
05a5bfc3af
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue