is-immutable-type
Advanced tools
Comparing version 1.2.4 to 1.2.5
# Changelog | ||
All notable changes to this project will be documented in this file. Dates are displayed in UTC. | ||
## [1.2.5](https://github.com/RebeccaStevens/is-immutable-type/compare/v1.2.4...v1.2.5) (2023-03-11) | ||
### Bug Fixes | ||
* support for recursive types in the form `type Foo = ReadonlyArray<Foo>` ([#88](https://github.com/RebeccaStevens/is-immutable-type/issues/88)) ([a2582a7](https://github.com/RebeccaStevens/is-immutable-type/commit/a2582a74dd916df0f2241d482d1d673c06bdc502)) | ||
## [1.2.4](https://github.com/RebeccaStevens/is-immutable-type/compare/v1.2.3...v1.2.4) (2023-02-02) | ||
@@ -5,0 +12,0 @@ |
{ | ||
"name": "is-immutable-type", | ||
"version": "1.2.4", | ||
"version": "1.2.5", | ||
"description": "Check the immutability of TypeScript types", | ||
@@ -45,20 +45,24 @@ "keywords": [ | ||
"scripts": { | ||
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript", | ||
"check-format": "prettier --list-different \"./**/*.{md,ts,yml}\"", | ||
"check-spelling": "cspell --config=.cspell.json \"**/*.{md,ts}\"", | ||
"build": "pnpm run build:node", | ||
"build:node": "rimraf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript", | ||
"cz": "git-cz", | ||
"format": "prettier --write \"./**/*.{md,ts,yml}\"", | ||
"lint": "yarn lint:js && yarn lint:md", | ||
"lint": "pnpm run lint:js && pnpm run lint:md && pnpm run lint:prettier && pnpm run lint:knip && pnpm run lint:spelling", | ||
"lint:js": "eslint .", | ||
"lint:js-fix": "eslint . --fix", | ||
"lint:knip": "knip --config knip.jsonc --production --exclude exports", | ||
"lint:md": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore", | ||
"lint:prettier": "prettier \"**/*\" --ignore-unknown --list-different", | ||
"lint:prettier-fix": "prettier \"**/*\" --ignore-unknown --write", | ||
"lint:spelling": "cspell \"**\" \".github/**/*\"", | ||
"prepare": "husky install", | ||
"spell-check": "yarn check-spelling", | ||
"test": "c8 ava", | ||
"test:limitations": "ava tests/limitations.test.ts" | ||
"test": "pnpm run test:js", | ||
"test:js": "c8 ava", | ||
"test:limitations": "ava tests/limitations.test.ts", | ||
"type-check": "tsc --noEmit --skipLibCheck" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "17.4.2", | ||
"@commitlint/config-conventional": "17.4.2", | ||
"@commitlint/cli": "17.4.4", | ||
"@commitlint/config-conventional": "17.4.4", | ||
"@cspell/dict-cryptocurrencies": "3.0.1", | ||
"@rebeccastevens/eslint-config": "1.5.0", | ||
"@rebeccastevens/eslint-config": "1.5.3", | ||
"@rollup/plugin-json": "6.0.0", | ||
@@ -73,21 +77,21 @@ "@rollup/plugin-node-resolve": "15.0.1", | ||
"@semantic-release/release-notes-generator": "10.0.3", | ||
"@types/node": "18.11.18", | ||
"@types/node": "18.15.0", | ||
"@types/rollup-plugin-auto-external": "2.0.2", | ||
"@typescript-eslint/eslint-plugin": "5.50.0", | ||
"@typescript-eslint/parser": "5.50.0", | ||
"@typescript-eslint/type-utils": "5.50.0", | ||
"@typescript-eslint/utils": "5.50.0", | ||
"@typescript-eslint/eslint-plugin": "5.54.1", | ||
"@typescript-eslint/parser": "5.54.1", | ||
"@typescript-eslint/type-utils": "5.54.1", | ||
"@typescript-eslint/utils": "5.54.1", | ||
"@typescript/vfs": "1.4.0", | ||
"ava": "5.1.1", | ||
"c8": "7.12.0", | ||
"ava": "5.2.0", | ||
"c8": "7.13.0", | ||
"commitizen": "4.3.0", | ||
"cspell": "6.20.1", | ||
"eslint": "8.33.0", | ||
"eslint-config-prettier": "8.6.0", | ||
"cspell": "6.28.0", | ||
"eslint": "8.35.0", | ||
"eslint-config-prettier": "8.7.0", | ||
"eslint-import-resolver-typescript": "3.5.3", | ||
"eslint-plugin-ava": "14.0.0", | ||
"eslint-plugin-eslint-comments": "3.2.0", | ||
"eslint-plugin-functional": "5.0.0", | ||
"eslint-plugin-functional": "5.0.5", | ||
"eslint-plugin-import": "2.27.5", | ||
"eslint-plugin-jsdoc": "39.7.5", | ||
"eslint-plugin-jsdoc": "40.0.1", | ||
"eslint-plugin-markdown": "3.0.0", | ||
@@ -99,17 +103,17 @@ "eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-sonarjs": "0.18.0", | ||
"eslint-plugin-unicorn": "45.0.2", | ||
"eslint-plugin-unicorn": "46.0.0", | ||
"husky": "8.0.3", | ||
"lint-staged": "13.1.0", | ||
"knip": "2.0.0-alpha.5", | ||
"lint-staged": "13.1.2", | ||
"markdownlint-cli": "0.33.0", | ||
"marked": "4.2.12", | ||
"prettier": "2.8.3", | ||
"prettier-plugin-packagejson": "2.4.2", | ||
"rimraf": "4.1.2", | ||
"rollup": "3.12.1", | ||
"prettier": "2.8.4", | ||
"prettier-plugin-packagejson": "2.4.3", | ||
"rimraf": "4.4.0", | ||
"rollup": "3.19.0", | ||
"rollup-plugin-auto-external": "2.0.0", | ||
"rollup-plugin-dts": "5.1.1", | ||
"rollup-plugin-unassert": "0.5.0", | ||
"semantic-release": "20.1.0", | ||
"rollup-plugin-dts": "5.2.0", | ||
"rollup-plugin-unassert": "0.6.0", | ||
"semantic-release": "20.1.1", | ||
"ts-node": "10.9.1", | ||
"ts-paths-esm-loader": "1.3.2", | ||
"tslib": "2.5.0", | ||
@@ -123,3 +127,3 @@ "typescript": "4.9.5" | ||
}, | ||
"packageManager": "yarn@3.4.1" | ||
"packageManager": "pnpm@7.29.0" | ||
} |
@@ -30,2 +30,5 @@ <div align="center"> | ||
yarn add is-immutable-type | ||
# Install with pnpm | ||
pnpm add is-immutable-type | ||
``` | ||
@@ -32,0 +35,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
86360
1354
220