Skip to content

Commit

Permalink
Merge branch 'main' into addDisableEnvVar
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmckeb authored Feb 11, 2024
2 parents ecda3ad + 8583333 commit d310c98
Show file tree
Hide file tree
Showing 9 changed files with 2,103 additions and 2,128 deletions.
14 changes: 9 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/strict"
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/strict-type-checked",
],
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"]
"project": ["./tsconfig.json"],
},
"ignorePatterns": ["dist", "jest.config.js", "src/helpers/__tests__/fixtures"]
"ignorePatterns": [
"dist",
"jest.config.js",
"src/helpers/__tests__/fixtures",
],
}
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,20 +97,20 @@ const b = styles['my_other-class'];

Please note that no options are required. However, depending on your configuration, you may need to customise these options.

| Option | Default value | Description |
| -------------------------- | ---------------------------------- | ------------------------------------------------------------------------------ |
| `additionalData` | `undefined` | An optional string to append to the top of source files. |
| `allowUnknownClassnames` | `false` | Disables TypeScript warnings on unknown classnames (for default imports only). |
| `classnameTransform` | `"asIs"` | See [`classnameTransform`](#classnameTransform) below. |
| `customMatcher` | `"\\.module\\.(c\|le\|sa\|sc)ss$"` | Changes the file extensions that this plugin processes. |
| `customRenderer` | `false` | See [`customRenderer`](#customRenderer) below. |
| `customTemplate` | `false` | See [`customTemplate`](#customTemplate) below. |
| `goToDefinition` | `false` | Enables jump to definition. See [`goToDefinition`](#goToDefinition) below. |
| `noUncheckedIndexedAccess` | `false` | Enable for compatibility with TypeScript's `noUncheckedIndexedAccess`. |
| `namedExports` | `true` | Enables named exports for compatible classnames. |
| `dotenvOptions` | `{}` | Provides options for [`dotenv`](https://github.com/motdotla/dotenv#options). |
| `postcssOptions` | `{}` | See [`postcssOptions`](#postcssOptions) below. |
| `rendererOptions` | `{}` | See [`rendererOptions`](#rendererOptions) below. |
| Option | Default value | Description |
| -------------------------- | ---------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| `additionalData` | `undefined` | An optional string to append to the top of source files. |
| `allowUnknownClassnames` | `false` | Disables TypeScript warnings on unknown classnames (for default imports only). |
| `classnameTransform` | `"asIs"` | See [`classnameTransform`](#classnameTransform) below. |
| `customMatcher` | `"\\.module\\.(c\|le\|sa\|sc)ss$"` | Changes the file extensions that this plugin processes. |
| `customRenderer` | `false` | See [`customRenderer`](#customRenderer) below. |
| `customTemplate` | `false` | See [`customTemplate`](#customTemplate) below. |
| `goToDefinition` | `false` | Enables jump to definition. See [`goToDefinition`](#goToDefinition) below. |
| `noUncheckedIndexedAccess` | `false` | Enable for compatibility with TypeScript's `noUncheckedIndexedAccess`. |
| `namedExports` | `true` | Enables named exports for compatible classnames. |
| `dotenvOptions` | `{}` | Provides options for [`dotenv`](https://github.com/motdotla/dotenv#options). Note that this plugin only accepts a `string` value for `path`. |
| `postcssOptions` | `{}` | See [`postcssOptions`](#postcssOptions) below. |
| `rendererOptions` | `{}` | See [`rendererOptions`](#rendererOptions) below. |

```json
{
Expand Down
67 changes: 33 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"description": "CSS modules support for TypeScript",
"homepage": "https://github.com/mrmckeb/typescript-plugin-css-modules",
"packageManager": "pnpm@7.18.0",
"packageManager": "pnpm@8.15.1",
"repository": {
"type": "git",
"url": "https://github.com/mrmckeb/typescript-plugin-css-modules"
Expand All @@ -27,7 +27,7 @@
],
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.build.json",
"lint": "eslint --max-warnings 0 . && pnpm prettier -c .",
"lint": "eslint --max-warnings 0 . && pnpm tsc && pnpm prettier -c .",
"prepublishOnly": "pnpm build",
"test": "jest",
"prepare": "husky install"
Expand All @@ -46,49 +46,48 @@
"trailingComma": "all"
},
"dependencies": {
"@types/postcss-modules-local-by-default": "^4.0.0",
"@types/postcss-modules-scope": "^3.0.1",
"dotenv": "^16.0.3",
"@types/postcss-modules-local-by-default": "^4.0.2",
"@types/postcss-modules-scope": "^3.0.4",
"dotenv": "^16.4.2",
"icss-utils": "^5.1.0",
"less": "^4.1.3",
"less": "^4.2.0",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.4.21",
"postcss": "^8.4.35",
"postcss-load-config": "^3.1.4",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-local-by-default": "^4.0.4",
"postcss-modules-scope": "^3.1.1",
"reserved-words": "^0.1.2",
"sass": "^1.58.3",
"sass": "^1.70.0",
"source-map-js": "^1.0.2",
"stylus": "^0.59.0",
"tsconfig-paths": "^4.1.2"
"stylus": "^0.62.0",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/icss-utils": "^5.1.0",
"@types/jest": "^29.4.0",
"@types/less": "^3.0.3",
"@types/lodash.camelcase": "^4.3.7",
"@types/node": "^18.14.0",
"@types/postcss-modules-extract-imports": "^3.0.2",
"@types/reserved-words": "^0.1.0",
"@types/sass": "^1.43.1",
"@types/stylus": "^0.48.38",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"bootstrap": "^5.2.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-node-single-context": "^29.0.0",
"lint-staged": "^13.1.2",
"@types/icss-utils": "^5.1.2",
"@types/jest": "^29.5.12",
"@types/less": "^3.0.6",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^18.19.15",
"@types/postcss-modules-extract-imports": "^3.0.5",
"@types/reserved-words": "^0.1.4",
"@types/stylus": "^0.48.42",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bootstrap": "^5.3.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"lint-staged": "^15.2.2",
"postcss-import-sync2": "^1.2.0",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"postcss-preset-env": "^8.5.1",
"prettier": "^3.2.5",
"sass-svg": "^1.2.0",
"ts-jest": "^29.0.5",
"typescript": "5.0.1-rc"
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": ">=4.0.0"
Expand Down
Loading

0 comments on commit d310c98

Please sign in to comment.