Skip to content

Commit

Permalink
Update things
Browse files Browse the repository at this point in the history
  • Loading branch information
neongreen committed Dec 3, 2023
1 parent 44be714 commit b1c0a32
Show file tree
Hide file tree
Showing 56 changed files with 18,904 additions and 21,984 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x
- run: yarn
- run: yarn check
- run: yarn jest
32,603 changes: 14,679 additions & 17,924 deletions .pnp.cjs

Large diffs are not rendered by default.

1,077 changes: 560 additions & 517 deletions .pnp.loader.mjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
874 changes: 0 additions & 874 deletions .yarn/releases/yarn-3.6.3.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions .yarn/sdks/eslint/lib/unsupported-api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env node

const {existsSync} = require(`fs`);
const {createRequire} = require(`module`);
const {resolve} = require(`path`);

const relPnpApiPath = "../../../../.pnp.cjs";

const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = createRequire(absPnpApiPath);

if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require eslint/use-at-your-own-risk
require(absPnpApiPath).setup();
}
}

// Defer to the real eslint/use-at-your-own-risk your application uses
module.exports = absRequire(`eslint/use-at-your-own-risk`);
12 changes: 10 additions & 2 deletions .yarn/sdks/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"name": "eslint",
"version": "8.31.0-sdk",
"version": "8.55.0-sdk",
"main": "./lib/api.js",
"type": "commonjs"
"type": "commonjs",
"bin": {
"eslint": "./bin/eslint.js"
},
"exports": {
"./package.json": "./package.json",
".": "./lib/api.js",
"./use-at-your-own-risk": "./lib/unsupported-api.js"
}
}
6 changes: 3 additions & 3 deletions .yarn/sdks/typescript/lib/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const absRequire = createRequire(absPnpApiPath);

if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/lib/typescript.js
// Setup the environment to be able to require typescript
require(absPnpApiPath).setup();
}
}

// Defer to the real typescript/lib/typescript.js your application uses
module.exports = absRequire(`typescript/lib/typescript.js`);
// Defer to the real typescript your application uses
module.exports = absRequire(`typescript`);
8 changes: 6 additions & 2 deletions .yarn/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "typescript",
"version": "5.2.2-sdk",
"version": "5.3.2-sdk",
"main": "./lib/typescript.js",
"type": "commonjs"
"type": "commonjs",
"bin": {
"tsc": "./bin/tsc",
"tsserver": "./bin/tsserver"
}
}
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ supportedArchitectures:
- linux
- win32

yarnPath: .yarn/releases/yarn-3.6.3.cjs
yarnPath: .yarn/releases/yarn-4.0.2.cjs
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@
"@p5-wrapper/react": "^4.2.0",
"@vercel/analytics": "^1.0.2",
"class-transformer": "^0.5.1",
"eslint": "^8.48.0",
"eslint": "^8.55.0",
"eslint-config-next": "^13.4.19",
"howler": "^2.2.3",
"json-diff": "^1.0.6",
"lodash": "^4.17.21",
"next": "^13.4.19",
"p5": "^1.7.0",
"ramda": "^0.29.0",
"ramda": "^0.29.1",
"random-seedable": "^1.0.8",
"react": "18.2.0",
"react-command-palette": "^0.22.1",
"react-dom": "^18.2.0",
"react-no-ssr": "^1.1.0",
"reflect-metadata": "^0.1.13",
"ts-pattern": "^5.0.5"
"ts-pattern": "^5.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.3",
Expand All @@ -45,30 +45,30 @@
"@types/jest": "^29.5.5",
"@types/json-diff": "^1.0.0",
"@types/lodash": "^4.14.197",
"@types/node": "18.11.18",
"@types/node": "20.5.1",
"@types/p5": "^1.7.0",
"@types/ramda": "^0.29.3",
"@types/ramda": "^0.29.9",
"@types/react": "^18.2.21",
"@types/react-command-palette": "^0.18.1",
"@types/react-dom": "^18.2.7",
"@types/react-no-ssr": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"esbuild": "^0.19.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.8",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"sass": "^1.66.1",
"typescript": "^5.2.2"
"typescript": "^5.3.2"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"volta": {
"node": "18.12.1"
"node": "20.5.1"
},
"packageManager": "yarn@3.6.3"
"packageManager": "yarn@4.0.2"
}
Loading

0 comments on commit b1c0a32

Please sign in to comment.