├── .commitlintrc.js ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── CODEOWNERS.md ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── bug.yml │ ├── config.yml │ └── feature.md ├── PULL_REQUEST_TEMPLATE │ ├── bug.md │ ├── feature.md │ └── optimization.md ├── actions │ ├── create-check │ │ └── action.yml │ └── install-latest-npm │ │ └── action.yml ├── dependabot.yml ├── matchers │ └── tap.json ├── settings.yml └── workflows │ ├── audit.yml │ ├── ci-release.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── post-dependabot.yml │ ├── pull-request.yml │ ├── release-integration.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── lib └── index.js ├── package.json ├── release-please-config.json ├── tap-snapshots └── test │ ├── test.js.test.cjs │ └── test.virtual.js.test.cjs └── test ├── test.js └── test.virtual.js /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODEOWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/CODEOWNERS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/PULL_REQUEST_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/PULL_REQUEST_TEMPLATE/optimization.md -------------------------------------------------------------------------------- /.github/actions/create-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/actions/create-check/action.yml -------------------------------------------------------------------------------- /.github/actions/install-latest-npm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/actions/install-latest-npm/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/matchers/tap.json -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/post-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/post-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/release-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/.npmrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "5.0.3" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/SECURITY.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/release-please-config.json -------------------------------------------------------------------------------- /tap-snapshots/test/test.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/tap-snapshots/test/test.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/test.virtual.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/tap-snapshots/test/test.virtual.js.test.cjs -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.virtual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/map-workspaces/HEAD/test/test.virtual.js --------------------------------------------------------------------------------