├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs ├── app.js ├── index.html ├── main.css └── main.js ├── package.json ├── scripts ├── backup.js ├── core.js ├── gulp.js ├── restore.js └── utils.js ├── src ├── core.js └── gulp.js └── test ├── bad.js ├── fixtures ├── bad.md └── supported.md ├── supported.js └── test.js /.gitattributes: -------------------------------------------------------------------------------- 1 | docs/app.js binary 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/README.md -------------------------------------------------------------------------------- /docs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/docs/app.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/docs/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/scripts/backup.js -------------------------------------------------------------------------------- /scripts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/scripts/core.js -------------------------------------------------------------------------------- /scripts/gulp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/scripts/gulp.js -------------------------------------------------------------------------------- /scripts/restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/scripts/restore.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/src/core.js -------------------------------------------------------------------------------- /src/gulp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/src/gulp.js -------------------------------------------------------------------------------- /test/bad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/test/bad.js -------------------------------------------------------------------------------- /test/fixtures/bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/test/fixtures/bad.md -------------------------------------------------------------------------------- /test/fixtures/supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/test/fixtures/supported.md -------------------------------------------------------------------------------- /test/supported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/test/supported.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidvishnoi/esm-to-cjs/HEAD/test/test.js --------------------------------------------------------------------------------