Skip to content

Commit

Permalink
refactor(polyfil): remove Promise.allSettled polyfill (#11)
Browse files Browse the repository at this point in the history
Promise.allSettled has been built into Node.js since v12.9.0 and major browsers for years. No need to include it here.

Co-authored-by: Jake Lauer <jakelauer@Jake-MacBook-M2-2.local>
  • Loading branch information
jakelauer and Jake Lauer committed May 26, 2024
1 parent 621e7c3 commit 89a51f7
Show file tree
Hide file tree
Showing 9 changed files with 2,489 additions and 7,425 deletions.
40 changes: 20 additions & 20 deletions .examples/tic-tac-toe/package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "examples-tic-tac-toe",
"type": "module",
"private": true,
"version": "1.0.0",
"description": "A fun tic-tac-toe game.",
"author": "Jake Lauer",
"license": "MIT",
"dependencies": {
"theseus-js": "workspace:latest"
},
"devDependencies": {
"ts-node": "10.9.2",
"pino-pretty": "5.0.0",
"name": "examples-tic-tac-toe",
"type": "module",
"private": true,
"version": "1.0.0",
"description": "A fun tic-tac-toe game.",
"author": "Jake Lauer",
"license": "MIT",
"dependencies": {
"theseus-js": "workspace:latest"
},
"devDependencies": {
"ts-node": "10.9.2",
"pino-pretty": "5.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-plugin-theseus": "workspace:latest",
"eslint": "^8.57.0"
},
"scripts": {
"root-build": "pnpm --prefix ../../ build",
"start-raw": "node --loader ts-node/esm --experimental-specifier-resolution=node ./src/main.ts",
"start": "pnpm root-build && pnpm start-raw"
},
"main": "index.ts"
},
"scripts": {
"root-build": "pnpm --prefix ../../ build:base",
"start-raw": "node --loader ts-node/esm --experimental-specifier-resolution=node ./src/main.ts",
"start": "pnpm root-build && pnpm start-raw"
},
"main": "index.ts"
}
Loading

0 comments on commit 89a51f7

Please sign in to comment.