Skip to content

Commit

Permalink
chore(deps): dependency refresh (#4871)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency rollup to ^4.19.1

* chore(deps): update dependency rollup to ^4.19.2

* chore(deps): update dependency rollup to ^4.20.0

* update stylelint and ts eslint minors (#4905)

* update tsx, ts-jest, postcss, tailwind, autoprefixer deps (#4906)

* dep updates 4871 - 2 (#4907)

* update turbo dep

* update intl and frontend api dep

* update chromatic dep

* update prosemirror-commands dep

* chore(deps): update storybook monorepo to ^8.2.7 (#4891)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Winter <36558508+mcwinter07@users.noreply.github.com>

* chore(deps): update storybook monorepo to ^8.2.8 (#4913)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency prosemirror-model to ^1.22.3 (#4914)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency tailwindcss to ^3.4.9 (#4911)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency chromatic to ^11.7.0 (#4910)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency turbo to ^2.0.12 (#4912)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency typescript-transform-paths to ^3.4.10 (#4915)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update eslint dependencies to v8 (major) (#4902)

* chore(deps): update eslint dependencies to v8

* replace typescript-eslint/ban-types with modern rules and @Stylistic

---------

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Winter <mcwinter07@gmail.com>

* chore(deps): update dependency tsx to ^4.17.0 (#4918)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency playwright to ^1.46.0 (#4916)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @tanstack/react-query to ^5.51.23 (#4909)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency tocbot to ^4.29.0 (#4917)

* chore(deps): update dependency tocbot to ^4.29.0

* remove unused tocbot dep

---------

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Winter <mcwinter07@gmail.com>

* resolve pnpm conflicts (#4903)

Co-authored-by: Michael Winter <mcwinter07@gmail.com>

* add changeset

---------

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Winter <36558508+mcwinter07@users.noreply.github.com>
Co-authored-by: Michael Winter <mcwinter07@gmail.com>
Co-authored-by: Geoffrey Chong <gyfchong@users.noreply.github.com>
  • Loading branch information
4 people authored Aug 13, 2024
1 parent 8b300ff commit 1158d54
Show file tree
Hide file tree
Showing 9 changed files with 2,375 additions and 2,163 deletions.
8 changes: 8 additions & 0 deletions .changeset/smart-apples-teach.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@kaizen/package-bundler": patch
"@kaizen/design-tokens": patch
"@kaizen/components": patch
"@kaizen/tailwind": patch
---

update deps
43 changes: 6 additions & 37 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
},
plugins: [
"@typescript-eslint",
"@stylistic",
"import",
"sort-imports-es6-autofix",
"ssr-friendly",
Expand All @@ -48,35 +49,9 @@ module.exports = {
default: "array-simple",
},
],
"@typescript-eslint/ban-types": [
"error",
{
types: {
Object: {
message: "Avoid using the `Object` type. Did you mean `object`?",
},
Function: {
message:
"Avoid using the `Function` type. Prefer a specific function type, like `() => void`.",
},
// eslint-disable-next-line
Boolean: {
message: "Avoid using the `Boolean` type. Did you mean `boolean`?",
},
// eslint-disable-next-line
Number: {
message: "Avoid using the `Number` type. Did you mean `number`?",
},
// eslint-disable-next-line
String: {
message: "Avoid using the `String` type. Did you mean `string`?",
},
Symbol: {
message: "Avoid using the `Symbol` type. Did you mean `symbol`?",
},
},
},
],
"@typescript-eslint/no-empty-object-type": "error",
"@typescript-eslint/no-unsafe-function-type": "error",
"@typescript-eslint/no-wrapper-object-types": "error",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/consistent-type-definitions": "off",
Expand Down Expand Up @@ -115,13 +90,6 @@ module.exports = {
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/quotes": [
"error",
"double",
{
avoidEscape: true,
},
],
"@typescript-eslint/semi": ["off", null],
"@typescript-eslint/triple-slash-reference": [
"error",
Expand All @@ -131,8 +99,9 @@ module.exports = {
lib: "always",
},
],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unified-signatures": "error",
"@stylistic/quotes": ["error", "double", { avoidEscape: true }],
"@stylistic/type-annotation-spacing": "error",
"arrow-body-style": "warn",
"arrow-parens": ["error", "as-needed"],
"brace-style": ["error", "1tbs"],
Expand Down
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,35 +44,35 @@
"dependencies": {
"@kaizen/design-tokens": "workspace:*",
"@kaizen/tailwind": "workspace:*",
"@stylistic/eslint-plugin": "^2.6.2",
"classnames": "^2.5.1",
"identity-obj-proxy": "^3.0.0",
"lodash.isempty": "^4.4.0",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-highlight": "^0.15.0",
"tocbot": "^4.28.2"
"react-highlight": "^0.15.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@cultureamp/changelog-github": "^0.1.0",
"@storybook/addon-a11y": "^8.2.5",
"@storybook/addon-actions": "^8.2.5",
"@storybook/addon-backgrounds": "^8.2.5",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-interactions": "^8.2.5",
"@storybook/addon-links": "^8.2.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.4",
"@storybook/blocks": "^8.2.5",
"@storybook/components": "^8.2.5",
"@storybook/core-events": "^8.2.5",
"@storybook/manager-api": "^8.2.5",
"@storybook/react": "^8.2.5",
"@storybook/react-webpack5": "^8.2.5",
"@storybook/test": "^8.2.5",
"@storybook/addon-a11y": "^8.2.8",
"@storybook/addon-actions": "^8.2.8",
"@storybook/addon-backgrounds": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.8",
"@storybook/components": "^8.2.8",
"@storybook/core-events": "^8.2.8",
"@storybook/manager-api": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-webpack5": "^8.2.8",
"@storybook/test": "^8.2.8",
"@storybook/test-runner": "^0.19.1",
"@storybook/theming": "^8.2.5",
"@tanstack/react-query": "^5.51.11",
"@storybook/theming": "^8.2.8",
"@tanstack/react-query": "^5.51.23",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
Expand All @@ -87,10 +87,10 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-highlight": "^0.12.8",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"axe-playwright": "^2.0.1",
"chromatic": "^11.5.6",
"chromatic": "^11.7.0",
"color-string": "^1.9.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
Expand All @@ -112,9 +112,9 @@
"jest-static-stubs": "^0.0.1",
"node-fetch": "^3.3.2",
"node-sass": "^9.0.0",
"playwright": "^1.45.3",
"playwright": "^1.46.0",
"plop": "^4.0.1",
"postcss": "^8.4.39",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^16.1.0",
Expand All @@ -126,15 +126,15 @@
"react-test-renderer": "^18.3.1",
"rimraf": "^6.0.1",
"sass-loader": "^14.2.1",
"storybook": "^8.2.5",
"storybook": "^8.2.8",
"storybook-addon-pseudo-states": "^3.1.1",
"style-loader": "^4.0.0",
"stylelint": "^16.7.0",
"stylelint": "^16.8.1",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.3",
"tailwindcss": "^3.4.9",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"turbo": "^2.0.9",
"turbo": "^2.0.12",
"typescript": "^5.5.4",
"webpack": "^5.93.0"
},
Expand Down
21 changes: 11 additions & 10 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@
"date-fns": "^3.6.0",
"lodash.debounce": "^4.0.8",
"nanobus": "^4.5.0",
"prosemirror-commands": "^1.5.2",
"prosemirror-commands": "^1.6.0",
"prosemirror-history": "^1.4.1",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.22.2",
"prosemirror-model": "^1.22.3",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.4.1",
"prosemirror-state": "^1.4.3",
Expand All @@ -93,32 +93,33 @@
"react-select": "^5.8.0",
"react-textfit": "^1.1.1",
"resize-observer-polyfill": "^1.5.1",
"use-debounce": "^10.0.1",
"tsx": "^4.16.2",
"use-debounce": "^10.0.2",
"tsx": "^4.17.0",
"uuid": "^10.0.0"
},
"dependenciesComments": {
"react-day-picker": "Version locked until a11y gets fixed (https://github.com/gpbl/react-day-picker/pull/1708)"
},
"devDependencies": {
"@cultureamp/frontend-apis": "^9.7.0",
"@cultureamp/i18n-react-intl": "^2.5.9",
"@cultureamp/frontend-apis": "^9.8.0",
"@cultureamp/i18n-react-intl": "^2.6.0",
"@kaizen/design-tokens": "workspace:*",
"@kaizen/package-bundler": "workspace:*",
"@types/lodash.debounce": "^4.0.9",
"@types/react-dom": "^18.3.0",
"@types/react-textfit": "^1.1.4",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.19",
"autoprefixer": "^10.4.20",
"concat-cli": "^4.0.0",
"query-string": "^9.1.0",
"react-intl": "^6.6.8",
"rollup": "^4.19.0",
"rollup": "^4.20.0",
"sass": "^1.77.8",
"serialize-query-params": "^2.0.2",
"svgo": "^3.3.2",
"ts-jest": "^29.2.3",
"tslib": "^2.6.3"
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"tsx": "^4.17.0"
},
"devDependenciesComments": {
"postcss": "Installed in root",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const VideoPlayer = ({
* https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide#autoplay_availability
*/
})
} catch (e) {
} catch {
/**
* Older browsers will raise a synchronous error because their first implementation
* of `.play` was not a promise.
Expand Down
4 changes: 2 additions & 2 deletions packages/design-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"json-to-flat-sass": "^1.0.0",
"lodash.flatmap": "^4.5.0",
"object-to-css-variables": "^0.2.1",
"postcss": "^8.4.39",
"postcss": "^8.4.41",
"prettier": "*",
"react-map-interaction": "^2.1.0",
"tsx": "^4.16.2"
"tsx": "^4.17.0"
},
"dependencies": {
"@types/color-string": "^1.5.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/package-bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@
"rollup-plugin-node-externals": "^7.1.2",
"rollup-plugin-postcss": "^4.0.2",
"ts-patch": "^3.2.1",
"typescript-transform-paths": "^3.4.7"
"typescript-transform-paths": "^3.4.10"
},
"dependenciesComments": {
"ts-patch": "Required for typescript-transform-paths"
},
"devDependencies": {
"rollup": "^4.19.0"
"rollup": "^4.20.0"
},
"devDependenciesComments": {
"typescript": "Installed in root"
},
"peerDependencies": {
"postcss": "^8.4.38",
"postcss": "^8.4.41",
"postcss-preset-env": "^9.5.14",
"rollup": "^4.18.0",
"tslib": ">=2.6.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
"@kaizen/design-tokens": "workspace:*"
},
"peerDependencies": {
"tailwindcss": ">=3.4.3"
"tailwindcss": ">=3.4.7"
}
}
Loading

0 comments on commit 1158d54

Please sign in to comment.