Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0x706b committed May 26, 2022
1 parent 9d6dd94 commit da4343d
Show file tree
Hide file tree
Showing 14 changed files with 3,969 additions and 3,445 deletions.
10 changes: 10 additions & 0 deletions .changeset/thick-goats-lay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@fncts/base": patch
"@fncts/codegen": patch
"@fncts/io": patch
"@fncts/scripts": patch
"@fncts/test": patch
"@fncts/typelevel": patch
---

chore: update dependencies
2 changes: 1 addition & 1 deletion .github/changeset-version.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { execSync } = require("node:child_process");

execSync("npx changeset version");
execSync("YARN_ENABLE_IMMUTABLE_INSTALLS=false node .yarn/releases/yarn-3.2.0.cjs");
execSync("YARN_ENABLE_IMMUTABLE_INSTALLS=false node .yarn/releases/yarn-4.0.0-rc.6.cjs");
785 changes: 0 additions & 785 deletions .yarn/releases/yarn-3.2.0.cjs

This file was deleted.

780 changes: 780 additions & 0 deletions .yarn/releases/yarn-4.0.0-rc.6.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.2.0.cjs
yarnPath: .yarn/releases/yarn-4.0.0-rc.6.cjs
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fncts",
"packageManager": "yarn@3.2.0",
"packageManager": "yarn@4.0.0-rc.6",
"type": "module",
"license": "BSD 3-Clause",
"repository": {
Expand Down Expand Up @@ -28,28 +28,28 @@
"@0x706b/eslint-plugin-module-specifier-extensions": "^0.1.7",
"@0x706b/prettier-eslint-8": "^0.0.3",
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@changesets/changelog-git": "^0.1.11",
"@changesets/cli": "^2.22.0",
"@tsplus/installer": "0.0.102",
"@tsplus/installer": "0.0.107",
"@types/benchmark": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/experimental-utils": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/experimental-utils": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-replace-import-extension": "^1.1.2",
"babel-plugin-replace-import-extension": "^1.1.3",
"benchmark": "^2.1.4",
"concurrently": "^7.1.0",
"eslint": "^8.13.0",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-codegen": "^0.16.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"madge": "^5.0.1",
"prettier": "^2.6.2",
"typescript": "^4.6.2",
"typescript": "^4.7.2",
"ultra-runner": "^3.10.5"
}
}
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"@fncts/eslint-config": "workspace:*",
"@fncts/scripts": "workspace:*",
"madge": "^5.0.1",
"typescript": "^4.6.2"
"typescript": "^4.7.2"
}
}
4 changes: 2 additions & 2 deletions packages/base/src/data/CaseClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const CaseClass: CaseConstructor = class<T extends Record<PropertyKey, an
get [Symbol.hash](): number {
let h = hash0;
for (const k of this[keysSymbol]) {
h = Hashable.combine(h, Hashable.unknown((this as T)[k]!));
h = Hashable.combine(h, Hashable.unknown(this[k]!));
}
return h;
}
Expand All @@ -67,7 +67,7 @@ export const CaseClass: CaseConstructor = class<T extends Record<PropertyKey, an
while (result && i < len) {
result =
this[keysSymbol][i] === thatKeys[i] &&
((this as T)[this[keysSymbol]![i]!] as {}) == (that as T)[thatKeys[i]!];
(this[this[keysSymbol]![i]!] as {}) == (that as T)[thatKeys[i]!];
i++;
}

Expand Down
20 changes: 10 additions & 10 deletions packages/codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@
"devDependencies": {
"@0x706b/eslint-plugin-align-assignments": "^0.1.2",
"@0x706b/prettier-eslint-8": "^0.0.3",
"@babel/generator": "^7.17.9",
"@babel/parser": "^7.17.9",
"@babel/generator": "^7.18.2",
"@babel/parser": "^7.18.3",
"@types/babel__generator": "^7.6.4",
"@types/benchmark": "^2.1.1",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.181",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/experimental-utils": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@types/lodash": "^4.14.182",
"@types/prettier": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/experimental-utils": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"benchmark": "^2.1.4",
"eslint": "^8.13.0",
"eslint": "^8.16.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-codegen": "^0.16.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.2"
"typescript": "^4.7.2"
},
"dependencies": {
"glob": "^7.2.0",
"glob": "^8.0.3",
"io-ts-extra": "^0.11.6",
"lodash": "^4.17.21"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@fncts/eslint-config": "workspace:*",
"@fncts/scripts": "workspace:*",
"madge": "^5.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}
6 changes: 3 additions & 3 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"devDependencies": {
"@fncts/config": "workspace:*",
"@fncts/eslint-config": "workspace:*",
"@yarnpkg/cli": "3.2.0",
"@yarnpkg/core": "3.2.0",
"@yarnpkg/cli": "4.0.0-rc.6",
"@yarnpkg/core": "4.0.0-rc.6",
"madge": "^5.0.1",
"typescript": "^4.6.2"
"typescript": "^4.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@fncts/eslint-config": "workspace:*",
"@fncts/scripts": "workspace:*",
"madge": "^5.0.1",
"typescript": "^4.6.2"
"typescript": "^4.7.2"
},
"tsplus": {
"typeDir": "./build/dts"
Expand Down
2 changes: 1 addition & 1 deletion packages/typelevel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"@fncts/config": "workspace:*",
"@fncts/eslint-config": "workspace:*",
"@fncts/scripts": "workspace:*",
"typescript": "^4.6.2"
"typescript": "^4.7.2"
}
}
Loading

0 comments on commit da4343d

Please sign in to comment.