├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── scripts ├── build │ ├── index.js │ └── rollup.config.js ├── changelog │ └── index.js ├── clean │ └── index.js ├── config.js ├── lint │ └── index.js ├── log │ └── index.js ├── release │ └── index.js └── test │ └── index.js ├── src ├── .eslintrc ├── index.d.ts ├── index.js └── rollup-plugin-prettier.js └── test ├── .eslintrc ├── fixtures ├── .eslintrc ├── bundle.js └── prettier.config.js ├── index.spec.js ├── it └── it.spec.js ├── rollup-plugin-prettier.spec.js └── utils ├── install-warn-spy.js ├── join-lines.js ├── verify-warn-logs-because-of-source-map.js └── verify-warn-logs-not-triggered.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.14.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/build/index.js -------------------------------------------------------------------------------- /scripts/build/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/build/rollup.config.js -------------------------------------------------------------------------------- /scripts/changelog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/changelog/index.js -------------------------------------------------------------------------------- /scripts/clean/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/clean/index.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/config.js -------------------------------------------------------------------------------- /scripts/lint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/lint/index.js -------------------------------------------------------------------------------- /scripts/log/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/log/index.js -------------------------------------------------------------------------------- /scripts/release/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/release/index.js -------------------------------------------------------------------------------- /scripts/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/scripts/test/index.js -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/src/index.js -------------------------------------------------------------------------------- /src/rollup-plugin-prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/src/rollup-plugin-prettier.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/fixtures/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/fixtures/bundle.js -------------------------------------------------------------------------------- /test/fixtures/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/fixtures/prettier.config.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/it/it.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/it/it.spec.js -------------------------------------------------------------------------------- /test/rollup-plugin-prettier.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/rollup-plugin-prettier.spec.js -------------------------------------------------------------------------------- /test/utils/install-warn-spy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/utils/install-warn-spy.js -------------------------------------------------------------------------------- /test/utils/join-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/utils/join-lines.js -------------------------------------------------------------------------------- /test/utils/verify-warn-logs-because-of-source-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/utils/verify-warn-logs-because-of-source-map.js -------------------------------------------------------------------------------- /test/utils/verify-warn-logs-not-triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjeanroy/rollup-plugin-prettier/HEAD/test/utils/verify-warn-logs-not-triggered.js --------------------------------------------------------------------------------