Skip to content

Commit

Permalink
fix(deps): upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanClementsHax committed Dec 7, 2022
1 parent a53320b commit 6f140ef
Show file tree
Hide file tree
Showing 5 changed files with 984 additions and 956 deletions.
1 change: 1 addition & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
stale-pr-message: 'This PR has been automatically marked stale because it it received no activity for 60 days. If you wish to keep this open, please leave a comment. Thanks.'
close-issue-message: 'This issue has been automatically closed because it received no activity for 60 days. If you think this was closed by accident, please leave a comment. Thanks.'
close-pr-message: 'This PR has been automatically closed because it received no activity for 60 days. If you think this was closed by accident, please leave a comment. Thanks.'
exempt-issue-labels: keep
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ module.exports = {

> Notice how we needed to set `color.primary` to a callback function. This is to properly handle opacity. See [Opacity](docs/themingColors.md#opacity) for more details.
> \
> Because it creates a theme extension for you, this is why it overwrites whatever is in the normal theme extension upon collision. See [This plugin's config overwrites what is in the normal tailwind config n collision](#this-plugins-config-overwrites-what-is-in-the-normal-tailwind-config-n-collision) for more details.
> Because it creates a theme extension for you, this is why it overwrites whatever is in the normal theme extension upon collision. See [This plugin's config overwrites what is in the normal tailwind config n collision](docs/config.md#this-plugins-config-overwrites-what-is-in-the-normal-tailwind-config-n-collision) for more details.
It also injects css variables with proper scoping into tailwind's [base layer](https://tailwindcss.com/docs/adding-custom-styles#using-css-and-layer).

Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,33 +53,33 @@
},
"devDependencies": {
"@types/color": "^3.0.2",
"@types/jest": "^29.0.1",
"@types/jest": "^29.2.4",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"commitizen": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.23.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-mock-extended": "^2.0.7",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"eslint-plugin-jest": "^27.1.6",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"jest-watch-typeahead": "^2.2.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.0",
"tslib": "^2.3.1",
"typescript": "^4.8.3"
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"tailwindcss": "^3.1.0"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": ["node_modules", "lib"],
"exclude": ["node_modules", "lib", "examples"],
"include": ["src"]
}

0 comments on commit 6f140ef

Please sign in to comment.