├── .git-hooks └── pre-push ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test ├── helper.cjs ├── test.js ├── test_dts.ts └── tsconfig.json /.git-hooks/pre-push: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | npm test 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/package.json -------------------------------------------------------------------------------- /test/helper.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/test/helper.cjs -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test_dts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/test/test_dts.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/dirname-filename-esm/HEAD/test/tsconfig.json --------------------------------------------------------------------------------