├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── compile.ts ├── package.json ├── src ├── index.ts └── transform.ts ├── test ├── fixture │ ├── bar.css │ ├── baz.css │ ├── foo.css │ ├── global.d.ts │ └── index.ts └── index.test.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/README.md -------------------------------------------------------------------------------- /compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/compile.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/src/transform.ts -------------------------------------------------------------------------------- /test/fixture/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/test/fixture/bar.css -------------------------------------------------------------------------------- /test/fixture/baz.css: -------------------------------------------------------------------------------- 1 | .goo { 2 | color: black; 3 | } -------------------------------------------------------------------------------- /test/fixture/foo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/test/fixture/foo.css -------------------------------------------------------------------------------- /test/fixture/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/test/fixture/global.d.ts -------------------------------------------------------------------------------- /test/fixture/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/test/fixture/index.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longlho/ts-transform-css-modules/HEAD/tsconfig.json --------------------------------------------------------------------------------