├── .codeclimate.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitconfig ├── .github └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── .npmignore ├── .scrutinizer.yml ├── .sonarcloud.properties ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── __func__ ├── defaults │ ├── index.SHOULD.d.ts │ └── postcss-d-ts.config.json ├── identifierParser--onlyClasses │ ├── index.SHOULD.d.ts │ └── postcss-d-ts.config.json ├── index.css └── template--custom_path │ ├── index.SHOULD.d.ts │ ├── postcss-d-ts.config.json │ └── template.d.ts ├── __recipes__ ├── create-react-app │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.module.css │ │ ├── App.module.css.d.ts │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── js-api │ ├── index.css │ ├── index.css.d.ts │ ├── index.js │ ├── package-lock.json │ └── package.json ├── next_10 │ ├── next-env.d.ts │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ └── module.tsx │ ├── postcss.config.js │ ├── styles │ └── tsconfig.json ├── next_9 │ ├── next-env.d.ts │ ├── next.config.js │ ├── next_9.code-workspace │ ├── package-lock.json │ ├── package.json │ ├── pages │ ├── postcss.config.js │ ├── postcss.config.json │ ├── styles │ └── tsconfig.json ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── button.tsx │ ├── module.tsx │ └── some.tsx ├── styles │ ├── button.css │ ├── button.css.d.ts │ ├── is.module.css │ ├── is.module.css.d.ts │ ├── is.module.less │ ├── is.module.less.d.ts │ ├── is.module.scss │ ├── is.module.scss.d.ts │ ├── is.module.styl │ ├── is.module.styl.d.ts │ ├── some.css │ ├── some.css.d.ts │ ├── some.less │ ├── some.less.d.ts │ ├── some.scss │ ├── some.scss.d.ts │ ├── some.styl │ └── some.styl.d.ts └── tsconfig.json ├── __typing__ ├── bootstrap3.css.d.ts ├── bootstrap4.css.d.ts ├── index.spec.ts └── material10.css.d.ts ├── __unit__ ├── empty.css ├── index.SHOULD.d.ts ├── index.css ├── index.css.d.ts ├── only-button-due-to-bad-identifier.css ├── only-button.css ├── only-button.css.d.ts ├── only-classname.css └── only-classname.css.d.ts ├── docs ├── postconfig.schema.json └── schema.json ├── func.spec.ts ├── git-hooks └── pre-commit ├── images ├── postcss-d-ts.frameworks.gif ├── postcss-d-ts.frameworks.white.gif ├── postcss-d-ts.full.gif ├── postcss-d-ts.gif ├── postcss-d-ts.github-social.gif └── postcss-d-ts.svg ├── jest.config.json ├── jest.config.utils.json ├── package.json ├── postcompile.sh ├── postcss-d-ts.code-workspace ├── sandbox └── readline.test.ts ├── sonar-project.properties ├── src ├── $defs.types.ts ├── 7.ts ├── _css-template.d.ts ├── collector.test.ts ├── collector.ts ├── fs.ts ├── index.ts ├── options.types.ts ├── postconfig.schema.json ├── replaceMultiplicated.test.ts ├── replaceMultiplicated.ts ├── rewrite.test.ts ├── rewrite.ts ├── schema.json ├── ts-swiss.types.ts ├── utils.test.ts └── utils.ts ├── test-runner.ts ├── tsconfig.compile.json ├── tsconfig.eslint.json ├── tsconfig.json └── unit.spec.ts /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.npmignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/README.md -------------------------------------------------------------------------------- /__func__/defaults/index.SHOULD.d.ts: -------------------------------------------------------------------------------- 1 | ../../__unit__/index.SHOULD.d.ts -------------------------------------------------------------------------------- /__func__/defaults/postcss-d-ts.config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /__func__/identifierParser--onlyClasses/index.SHOULD.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__func__/identifierParser--onlyClasses/index.SHOULD.d.ts -------------------------------------------------------------------------------- /__func__/identifierParser--onlyClasses/postcss-d-ts.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "identifierPattern": "\\.([\\w-]+)" 3 | } -------------------------------------------------------------------------------- /__func__/index.css: -------------------------------------------------------------------------------- 1 | ../__unit__/index.css -------------------------------------------------------------------------------- /__func__/template--custom_path/index.SHOULD.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__func__/template--custom_path/index.SHOULD.d.ts -------------------------------------------------------------------------------- /__func__/template--custom_path/postcss-d-ts.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__func__/template--custom_path/postcss-d-ts.config.json -------------------------------------------------------------------------------- /__func__/template--custom_path/template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__func__/template--custom_path/template.d.ts -------------------------------------------------------------------------------- /__recipes__/create-react-app/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /__recipes__/create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/.gitignore -------------------------------------------------------------------------------- /__recipes__/create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/README.md -------------------------------------------------------------------------------- /__recipes__/create-react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/package-lock.json -------------------------------------------------------------------------------- /__recipes__/create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/package.json -------------------------------------------------------------------------------- /__recipes__/create-react-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/postcss.config.js -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/index.html -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/logo192.png -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/logo512.png -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/manifest.json -------------------------------------------------------------------------------- /__recipes__/create-react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/public/robots.txt -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/App.module.css -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/App.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/App.module.css.d.ts -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/App.test.tsx -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/App.tsx -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/index.css -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/index.tsx -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/logo.svg -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/reportWebVitals.ts -------------------------------------------------------------------------------- /__recipes__/create-react-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/src/setupTests.ts -------------------------------------------------------------------------------- /__recipes__/create-react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/create-react-app/tsconfig.json -------------------------------------------------------------------------------- /__recipes__/js-api/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/js-api/index.css -------------------------------------------------------------------------------- /__recipes__/js-api/index.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/js-api/index.css.d.ts -------------------------------------------------------------------------------- /__recipes__/js-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/js-api/index.js -------------------------------------------------------------------------------- /__recipes__/js-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/js-api/package-lock.json -------------------------------------------------------------------------------- /__recipes__/js-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/js-api/package.json -------------------------------------------------------------------------------- /__recipes__/next_10/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/next-env.d.ts -------------------------------------------------------------------------------- /__recipes__/next_10/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/next.config.js -------------------------------------------------------------------------------- /__recipes__/next_10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/package-lock.json -------------------------------------------------------------------------------- /__recipes__/next_10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/package.json -------------------------------------------------------------------------------- /__recipes__/next_10/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/pages/_app.js -------------------------------------------------------------------------------- /__recipes__/next_10/pages/module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/pages/module.tsx -------------------------------------------------------------------------------- /__recipes__/next_10/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_10/postcss.config.js -------------------------------------------------------------------------------- /__recipes__/next_10/styles: -------------------------------------------------------------------------------- 1 | ../styles -------------------------------------------------------------------------------- /__recipes__/next_10/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /__recipes__/next_9/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/next-env.d.ts -------------------------------------------------------------------------------- /__recipes__/next_9/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/next.config.js -------------------------------------------------------------------------------- /__recipes__/next_9/next_9.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/next_9.code-workspace -------------------------------------------------------------------------------- /__recipes__/next_9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/package-lock.json -------------------------------------------------------------------------------- /__recipes__/next_9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/package.json -------------------------------------------------------------------------------- /__recipes__/next_9/pages: -------------------------------------------------------------------------------- 1 | ../pages -------------------------------------------------------------------------------- /__recipes__/next_9/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./postcss.config.json") 2 | -------------------------------------------------------------------------------- /__recipes__/next_9/postcss.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/next_9/postcss.config.json -------------------------------------------------------------------------------- /__recipes__/next_9/styles: -------------------------------------------------------------------------------- 1 | ../styles -------------------------------------------------------------------------------- /__recipes__/next_9/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../tsconfig.json -------------------------------------------------------------------------------- /__recipes__/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/package-lock.json -------------------------------------------------------------------------------- /__recipes__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/package.json -------------------------------------------------------------------------------- /__recipes__/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/pages/_app.js -------------------------------------------------------------------------------- /__recipes__/pages/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/pages/button.tsx -------------------------------------------------------------------------------- /__recipes__/pages/module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/pages/module.tsx -------------------------------------------------------------------------------- /__recipes__/pages/some.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/pages/some.tsx -------------------------------------------------------------------------------- /__recipes__/styles/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/button.css -------------------------------------------------------------------------------- /__recipes__/styles/button.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/button.css.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/is.module.css: -------------------------------------------------------------------------------- 1 | .css_module { 2 | color: white; 3 | } 4 | -------------------------------------------------------------------------------- /__recipes__/styles/is.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/is.module.css.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/is.module.less: -------------------------------------------------------------------------------- 1 | .less_module { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/is.module.less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/is.module.less.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/is.module.scss: -------------------------------------------------------------------------------- 1 | .scss_module { 2 | border-radius: 4px; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/is.module.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/is.module.scss.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/is.module.styl: -------------------------------------------------------------------------------- 1 | .stylus_module { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/is.module.styl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/is.module.styl.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/some.css: -------------------------------------------------------------------------------- 1 | .dialog__title { 2 | border: 1px solid black; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/some.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/some.css.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/some.less: -------------------------------------------------------------------------------- 1 | .dialog__cancel { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/some.less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/some.less.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/some.scss: -------------------------------------------------------------------------------- 1 | .dialog__submit { 2 | background-color: blue; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/some.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/some.scss.d.ts -------------------------------------------------------------------------------- /__recipes__/styles/some.styl: -------------------------------------------------------------------------------- 1 | .dialog__close { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /__recipes__/styles/some.styl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/styles/some.styl.d.ts -------------------------------------------------------------------------------- /__recipes__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__recipes__/tsconfig.json -------------------------------------------------------------------------------- /__typing__/bootstrap3.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__typing__/bootstrap3.css.d.ts -------------------------------------------------------------------------------- /__typing__/bootstrap4.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__typing__/bootstrap4.css.d.ts -------------------------------------------------------------------------------- /__typing__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__typing__/index.spec.ts -------------------------------------------------------------------------------- /__typing__/material10.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__typing__/material10.css.d.ts -------------------------------------------------------------------------------- /__unit__/empty.css: -------------------------------------------------------------------------------- 1 | button {} 2 | -------------------------------------------------------------------------------- /__unit__/index.SHOULD.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/index.SHOULD.d.ts -------------------------------------------------------------------------------- /__unit__/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/index.css -------------------------------------------------------------------------------- /__unit__/index.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/index.css.d.ts -------------------------------------------------------------------------------- /__unit__/only-button-due-to-bad-identifier.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/only-button-due-to-bad-identifier.css -------------------------------------------------------------------------------- /__unit__/only-button.css: -------------------------------------------------------------------------------- 1 | .button {} 2 | -------------------------------------------------------------------------------- /__unit__/only-button.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/only-button.css.d.ts -------------------------------------------------------------------------------- /__unit__/only-classname.css: -------------------------------------------------------------------------------- 1 | .classname {} 2 | -------------------------------------------------------------------------------- /__unit__/only-classname.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/__unit__/only-classname.css.d.ts -------------------------------------------------------------------------------- /docs/postconfig.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/docs/postconfig.schema.json -------------------------------------------------------------------------------- /docs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/docs/schema.json -------------------------------------------------------------------------------- /func.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/func.spec.ts -------------------------------------------------------------------------------- /git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | npm run build 3 | exit $? -------------------------------------------------------------------------------- /images/postcss-d-ts.frameworks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.frameworks.gif -------------------------------------------------------------------------------- /images/postcss-d-ts.frameworks.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.frameworks.white.gif -------------------------------------------------------------------------------- /images/postcss-d-ts.full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.full.gif -------------------------------------------------------------------------------- /images/postcss-d-ts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.gif -------------------------------------------------------------------------------- /images/postcss-d-ts.github-social.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.github-social.gif -------------------------------------------------------------------------------- /images/postcss-d-ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/images/postcss-d-ts.svg -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/jest.config.json -------------------------------------------------------------------------------- /jest.config.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/jest.config.utils.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/package.json -------------------------------------------------------------------------------- /postcompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/postcompile.sh -------------------------------------------------------------------------------- /postcss-d-ts.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/postcss-d-ts.code-workspace -------------------------------------------------------------------------------- /sandbox/readline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/sandbox/readline.test.ts -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/$defs.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/$defs.types.ts -------------------------------------------------------------------------------- /src/7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/7.ts -------------------------------------------------------------------------------- /src/_css-template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/_css-template.d.ts -------------------------------------------------------------------------------- /src/collector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/collector.test.ts -------------------------------------------------------------------------------- /src/collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/collector.ts -------------------------------------------------------------------------------- /src/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/fs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/options.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/options.types.ts -------------------------------------------------------------------------------- /src/postconfig.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/postconfig.schema.json -------------------------------------------------------------------------------- /src/replaceMultiplicated.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/replaceMultiplicated.test.ts -------------------------------------------------------------------------------- /src/replaceMultiplicated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/replaceMultiplicated.ts -------------------------------------------------------------------------------- /src/rewrite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/rewrite.test.ts -------------------------------------------------------------------------------- /src/rewrite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/rewrite.ts -------------------------------------------------------------------------------- /src/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/schema.json -------------------------------------------------------------------------------- /src/ts-swiss.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/ts-swiss.types.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/test-runner.ts -------------------------------------------------------------------------------- /tsconfig.compile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/tsconfig.compile.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- 1 | configs/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askirmas/postcss-d-ts/HEAD/unit.spec.ts --------------------------------------------------------------------------------