Skip to content

Commit

Permalink
deps: Update dev and test dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Oct 3, 2023
1 parent 5a9062d commit 90bbe32
Show file tree
Hide file tree
Showing 6 changed files with 2,103 additions and 691 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@
},
"devDependencies": {
"@moonrepo/dev": "^2.0.1",
"@types/jest": "^29.5.2",
"babel-preset-moon": "^2.0.4",
"eslint": "^8.42.0",
"eslint-config-moon": "^2.0.4",
"@types/jest": "^29.5.5",
"babel-preset-moon": "^2.0.9",
"eslint": "^8.50.0",
"eslint-config-moon": "^2.0.10",
"fast-glob": "^3.2.12",
"fetch-mock-jest": "^1.5.1",
"filesize": "^10.0.7",
"gzip-size": "^7.0.0",
"jest": "^29.5.0",
"jest-preset-moon": "^2.0.2",
"jest": "^29.7.0",
"jest-preset-moon": "^2.0.5",
"lerna": "^6.6.2",
"packemon": "^3.1.1",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"prettier-config-moon": "^1.1.2",
"tsconfig-moon": "^1.3.0",
"typescript": "^5.1.3"
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*",
Expand Down
8 changes: 4 additions & 4 deletions packages/generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"src/**/*"
],
"dependencies": {
"@types/cheerio": "^0.22.31",
"@types/fs-extra": "^11.0.1",
"@types/node": "^16.18.35",
"@types/node-fetch": "^2.6.4",
"@types/cheerio": "^0.22.32",
"@types/fs-extra": "^11.0.2",
"@types/node": "^16.18.57",
"@types/node-fetch": "^2.6.6",
"chalk": "^5.2.0",
"cheerio": "^1.0.0-rc.12",
"emojibase": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/generator/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable @typescript-eslint/sort-type-union-intersection-members */
/* eslint-disable @typescript-eslint/sort-type-constituents */

import {
Emoticon,
Expand Down Expand Up @@ -151,7 +151,7 @@ export interface EmojiVariation {

export type EmojiVariationMap = HexcodeMap<EmojiVariation>;

export type EmoticonMap = Record<string, string | string[]>;
export type EmoticonMap = Record<string, string[] | string>;

export interface ParsedLine {
comment: string;
Expand Down
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"url-search-params-polyfill": "^8.2.3"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/react": "^17.0.61"
"@types/lodash": "^4.14.199",
"@types/react": "^17.0.67"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export default function Filters({
<label htmlFor="subgroup">Subgroup</label>

<select
disabled={disabled || !groupsMeta || !groupsMeta.hierarchy[group] || !subgroupLabels}
disabled={disabled || !groupsMeta?.hierarchy[group] || !subgroupLabels}
id="subgroup"
name="subgroup"
value={subgroup}
Expand Down
Loading

0 comments on commit 90bbe32

Please sign in to comment.