├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README v5 preview.md ├── README.md ├── bin └── ospec ├── changelog.md ├── ospec.js ├── package.json ├── releasing.md ├── scripts ├── build-done-parser.js ├── logger.js └── rename-stable-binaries.js └── tests ├── fixtures ├── legacy │ ├── README.md │ ├── metadata │ │ ├── cjs │ │ │ ├── default1.js │ │ │ ├── default2.js │ │ │ ├── override.js │ │ │ └── package.json │ │ ├── config.js │ │ └── esm │ │ │ ├── default1.js │ │ │ ├── default2.js │ │ │ ├── override.js │ │ │ └── package.json │ ├── success │ │ ├── cjs │ │ │ ├── explicit │ │ │ │ ├── explicit1.js │ │ │ │ └── explicit2.js │ │ │ ├── main.js │ │ │ ├── other.js │ │ │ ├── package.json │ │ │ ├── tests │ │ │ │ ├── main1.js │ │ │ │ └── main2.js │ │ │ └── very │ │ │ │ └── deep │ │ │ │ └── tests │ │ │ │ ├── deep1.js │ │ │ │ └── deeper │ │ │ │ └── deep2.js │ │ ├── config.js │ │ └── esm │ │ │ ├── explicit │ │ │ ├── explicit1.js │ │ │ └── explicit2.js │ │ │ ├── main.js │ │ │ ├── other.js │ │ │ ├── package.json │ │ │ ├── tests │ │ │ ├── main1.js │ │ │ └── main2.js │ │ │ └── very │ │ │ └── deep │ │ │ └── tests │ │ │ ├── deep1.js │ │ │ └── deeper │ │ │ └── deep2.js │ └── throws │ │ ├── cjs │ │ ├── main.js │ │ ├── other.js │ │ ├── package.json │ │ ├── tests │ │ │ ├── main1.js │ │ │ └── main2.js │ │ └── very │ │ │ └── deep │ │ │ └── tests │ │ │ ├── deep1.js │ │ │ └── deeper │ │ │ └── deep2.js │ │ ├── config.js │ │ └── esm │ │ ├── main.js │ │ ├── other.js │ │ ├── package.json │ │ ├── tests │ │ ├── main1.js │ │ └── main2.js │ │ └── very │ │ └── deep │ │ └── tests │ │ ├── deep1.js │ │ └── deeper │ │ └── deep2.js └── v5 │ ├── README.md │ ├── metadata │ ├── cjs │ │ ├── default1.js │ │ ├── default2.js │ │ ├── override.js │ │ └── package.json │ ├── config.js │ └── esm │ │ ├── default1.js │ │ ├── default2.js │ │ ├── override.js │ │ └── package.json │ ├── success │ ├── cjs │ │ ├── explicit │ │ │ ├── explicit1.js │ │ │ └── explicit2.js │ │ ├── main.js │ │ ├── other.js │ │ ├── package.json │ │ ├── tests │ │ │ ├── main1.js │ │ │ └── main2.js │ │ └── very │ │ │ └── deep │ │ │ └── tests │ │ │ ├── deep1.js │ │ │ └── deeper │ │ │ └── deep2.js │ ├── config.js │ └── esm │ │ ├── explicit │ │ ├── explicit1.js │ │ └── explicit2.js │ │ ├── main.js │ │ ├── other.js │ │ ├── package.json │ │ ├── tests │ │ ├── main1.js │ │ └── main2.js │ │ └── very │ │ └── deep │ │ └── tests │ │ ├── deep1.js │ │ └── deeper │ │ └── deep2.js │ └── throws │ ├── cjs │ ├── main.js │ ├── other.js │ ├── package.json │ ├── tests │ │ ├── main1.js │ │ └── main2.js │ └── very │ │ └── deep │ │ └── tests │ │ ├── deep1.js │ │ └── deeper │ │ └── deep2.js │ ├── config.js │ └── esm │ ├── main.js │ ├── other.js │ ├── package.json │ ├── tests │ ├── main1.js │ └── main2.js │ └── very │ └── deep │ └── tests │ ├── deep1.js │ └── deeper │ └── deep2.js ├── test-api-legacy.js ├── test-api-v5.js ├── test-cli.js └── test.html /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/LICENSE -------------------------------------------------------------------------------- /README v5 preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/README v5 preview.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/README.md -------------------------------------------------------------------------------- /bin/ospec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/bin/ospec -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/changelog.md -------------------------------------------------------------------------------- /ospec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/ospec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/package.json -------------------------------------------------------------------------------- /releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/releasing.md -------------------------------------------------------------------------------- /scripts/build-done-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/scripts/build-done-parser.js -------------------------------------------------------------------------------- /scripts/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/scripts/logger.js -------------------------------------------------------------------------------- /scripts/rename-stable-binaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/scripts/rename-stable-binaries.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/README.md -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/cjs/default1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/cjs/default1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/cjs/default2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/cjs/default2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/cjs/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/cjs/override.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/config.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/esm/default1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/esm/default1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/esm/default2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/esm/default2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/esm/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/esm/override.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/metadata/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/metadata/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/explicit/explicit1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/explicit/explicit1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/explicit/explicit2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/explicit/explicit2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/main.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/tests/main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/tests/main1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/cjs/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/cjs/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/config.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/explicit/explicit1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/explicit/explicit1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/explicit/explicit2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/explicit/explicit2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/main.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/other.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/tests/main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/tests/main1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/success/esm/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/success/esm/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/cjs/main.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/tests/main1.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/cjs/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/cjs/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/cjs/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/cjs/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/config.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/esm/main.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(import.meta.url.slice(7) + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/tests/main1.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(import.meta.url.slice(7) + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/esm/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/esm/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/legacy/throws/esm/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/legacy/throws/esm/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/README.md -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/cjs/default1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/cjs/default1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/cjs/default2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/cjs/default2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/cjs/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/cjs/override.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/config.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/esm/default1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/esm/default1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/esm/default2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/esm/default2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/esm/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/esm/override.js -------------------------------------------------------------------------------- /tests/fixtures/v5/metadata/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/metadata/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/explicit/explicit1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/explicit/explicit1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/explicit/explicit2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/explicit/explicit2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/main.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/tests/main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/tests/main1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/cjs/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/cjs/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/config.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/explicit/explicit1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/explicit/explicit1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/explicit/explicit2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/explicit/explicit2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/main.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/other.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/tests/main1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/tests/main1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/success/esm/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/success/esm/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/cjs/main.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/cjs/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/tests/main1.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(__filename + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/cjs/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/cjs/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/cjs/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/cjs/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/config.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/esm/main.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/other.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(import.meta.url.slice(7) + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/esm/package.json -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/tests/main1.js: -------------------------------------------------------------------------------- 1 | 2 | "use strict" 3 | console.log(import.meta.url.slice(7) + " ran") 4 | -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/tests/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/esm/tests/main2.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/very/deep/tests/deep1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/esm/very/deep/tests/deep1.js -------------------------------------------------------------------------------- /tests/fixtures/v5/throws/esm/very/deep/tests/deeper/deep2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/fixtures/v5/throws/esm/very/deep/tests/deeper/deep2.js -------------------------------------------------------------------------------- /tests/test-api-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/test-api-legacy.js -------------------------------------------------------------------------------- /tests/test-api-v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/test-api-v5.js -------------------------------------------------------------------------------- /tests/test-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/test-cli.js -------------------------------------------------------------------------------- /tests/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MithrilJS/ospec/HEAD/tests/test.html --------------------------------------------------------------------------------