ignorefs

v5.0.4
Ignore common and custom patterns of the file system
binary deno deno-edition deno-entry denoland encoding es2017 es2022 es5 and 7 more...

our:clean

rm -rf ./docs ./edition* ./es2015 ./es5 ./out ./.next

our:compile

npm run our:compile:deno && npm run our:compile:edition-es2017 && npm run our:compile:edition-es2017-esm && npm run our:compile:edition-es2022 && npm run our:compile:edition-es5 && npm run our:compile:edition-types

our:compile:deno

make-deno-edition --attempt

our:compile:edition-es2017

tsc --module commonjs --target ES2017 --outDir ./edition-es2017 --project tsconfig.json && ( test ! -d edition-es2017/source || ( mv edition-es2017/source edition-temp && rm -rf edition-es2017 && mv edition-temp edition-es2017 ) ) && printf '%s' '{"type": "commonjs"}' > edition-es2017/package.json

our:compile:edition-es2017-esm

tsc --module ESNext --target ES2017 --outDir ./edition-es2017-esm --project tsconfig.json && ( test ! -d edition-es2017-esm/source || ( mv edition-es2017-esm/source edition-temp && rm -rf edition-es2017-esm && mv edition-temp edition-es2017-esm ) ) && printf '%s' '{"type": "module"}' > edition-es2017-esm/package.json

our:compile:edition-es2022

tsc --module commonjs --target ES2022 --outDir ./edition-es2022 --project tsconfig.json && ( test ! -d edition-es2022/source || ( mv edition-es2022/source edition-temp && rm -rf edition-es2022 && mv edition-temp edition-es2022 ) ) && printf '%s' '{"type": "commonjs"}' > edition-es2022/package.json

our:compile:edition-es5

tsc --module commonjs --target ES5 --outDir ./edition-es5 --project tsconfig.json && ( test ! -d edition-es5/source || ( mv edition-es5/source edition-temp && rm -rf edition-es5 && mv edition-temp edition-es5 ) ) && printf '%s' '{"type": "commonjs"}' > edition-es5/package.json

our:compile:edition-types

tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir ./edition-types --project tsconfig.json && ( test ! -d edition-types/source || ( mv edition-types/source edition-temp && rm -rf edition-types && mv edition-temp edition-types ) )

our:deploy

printf '%s ' 'no need for this project'

our:meta

npm run our:meta:docs && npm run our:meta:projectz

our:meta:docs

npm run our:meta:docs:typedoc

our:meta:docs:typedoc

rm -rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source

our:meta:projectz

projectz --offline

our:release

npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push

our:release:check-changelog

cat ./HISTORY.md | grep "v$npm_package_version" || (printf '%s ' "add a changelog entry for v$npm_package_version" && exit -1)

our:release:check-dirty

git diff --exit-code

our:release:prepare

npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta

our:release:push

git push origin && git push origin --tags

our:release:tag

export MESSAGE=$(cat ./HISTORY.md | sed -n "/## v$npm_package_version/,/##/p" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test "$MESSAGE" || (printf '%s ' 'proper changelog entry not found' && exit -1) && git tag "v$npm_package_version" -am "$MESSAGE"

our:setup

npm run our:setup:install

our:setup:install

npm install

our:test

npm run our:verify && npm test

our:verify

npm run our:verify:eslint && npm run our:verify:prettier

our:verify:eslint

eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source

our:verify:prettier

prettier --write .

test

node ./test.cjs

Metadata

Downloads

Maintainers