Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to node 20.11.1 LTS, replaced ts-node with tsx in the necessary places as a temporary fix for https://github.com/TypeStrong/ts-node/issues/1997 #778

Merged
merged 12 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20,811 changes: 13,335 additions & 7,476 deletions extensions/package-lock.json

Large diffs are not rendered by default.

35 changes: 18 additions & 17 deletions extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"watch": "npm run build -- --watch",
"build:production": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=false webpack",
"watch:production": "npm run build:production -- --watch",
"zip": "ts-node ./lib/zip-extensions.ts",
"zip": "tsx ./lib/zip-extensions.ts",
"package": "npm run build:production && npm run zip",
"package:debug": "cross-env DEBUG_PROD=true npm run package",
"build:types": "cd .. && npm run build:types",
Expand All @@ -23,9 +23,9 @@
"lint-fix": "npm run lint-fix:scripts && npm run lint:styles -- --fix",
"lint-fix:scripts": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs}\" && npm run lint:scripts",
"lint:staged": "lint-staged -q",
"postinstall": "ts-node ./lib/add-remotes.ts",
"create-extension": "ts-node ./lib/create-extension.ts",
"update-from-templates": "ts-node ./lib/update-from-templates.ts"
"postinstall": "tsx ./lib/add-remotes.ts",
"create-extension": "tsx ./lib/create-extension.ts",
"update-from-templates": "tsx ./lib/update-from-templates.ts"
},
"lint-staged": {
"*.{cjs,js,jsx,ts,tsx}": ["prettier --write", "cross-env NODE_ENV=development eslint --cache"],
Expand All @@ -39,42 +39,43 @@
"react-dom": ">=18.2.0"
},
"dependencies": {
"@sillsdev/scripture": "^1.4.0",
"@sillsdev/scripture": "^1.4.3",
"platform-bible-utils": "file:../lib/platform-bible-utils"
},
"devDependencies": {
"@biblionexus-foundation/platform-editor": "^0.0.5",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.6",
"@swc/core": "^1.4.1",
"@types/node": "^20.11.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@swc/core": "^1.4.2",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/webpack": "^5.28.5",
"@typescript-eslint/parser": "^6.19.1",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.9.1",
"css-loader": "^6.10.0",
"escape-string-regexp": "^5.0.0",
"glob": "^10.3.10",
"papi-dts": "file:../lib/papi-dts",
"platform-bible-react": "file:../lib/platform-bible-react",
"prettier": "^3.2.4",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"replace-in-file": "^7.1.0",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"stylelint": "^16.2.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"swc-loader": "^0.2.3",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"webpack": "^5.90.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"zip-folder-promise": "^1.2.0"
Expand Down
Loading
Loading