-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use tsx for scripts and local admin server
Another attempt at doing this. Set `GIT_CMS_DIR` dynamically to make it work both when the code runs from the top level dir with `tsx` and from the `itsJustJavascript` dir.
- Loading branch information
Showing
9 changed files
with
345 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,31 +6,31 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"batchTagWithGpt": "node --enable-source-maps ./itsJustJavascript/baker/batchTagWithGpt.js", | ||
"buildAndDeploySite": "node --enable-source-maps ./itsJustJavascript/baker/buildAndDeploySite.js", | ||
"batchTagWithGpt": "tsx --tsconfig tsconfig.tsx.json baker/batchTagWithGpt.ts", | ||
"buildAndDeploySite": "tsx --tsconfig tsconfig.tsx.json baker/buildAndDeploySite.ts", | ||
"buildCoverage": "jest --coverage=true --coverageProvider=v8", | ||
"buildLocalBake": "node --enable-source-maps ./itsJustJavascript/baker/buildLocalBake.js", | ||
"buildLocalBake": "tsx --tsconfig tsconfig.tsx.json baker/buildLocalBake.ts", | ||
"buildTsc": "tsc -b -verbose", | ||
"buildLerna": "lerna run build", | ||
"buildViteAdmin": "vite build --config vite.config-admin.mts", | ||
"buildViteSite": "vite build --config vite.config-site.mts", | ||
"buildVite": "yarn buildViteSite && yarn buildViteAdmin", | ||
"bakeGdocPosts": "node --enable-source-maps ./itsJustJavascript/baker/bakeGdocPosts.js", | ||
"bakeGdocPosts": "tsx --tsconfig tsconfig.tsx.json baker/bakeGdocPosts.ts", | ||
"cleanTsc": "rm -rf itsJustJavascript && tsc -b -clean", | ||
"deployContentPreview": "PREVIEW_BRANCH=${PREVIEW_BRANCH:-} ./ops/buildkite/deploy-content-preview", | ||
"fetchServerStatus": "node --enable-source-maps ./itsJustJavascript/baker/liveCommit.js", | ||
"fetchServerStatus": "tsx --tsconfig tsconfig.tsx.json baker/liveCommit.ts", | ||
"fixLint": "eslint . --fix", | ||
"fixPrettierAll": "yarn prettier --write \"**/*.{tsx,ts,jsx,js,json,md,html,css,scss,yml}\"", | ||
"runRegionsUpdater": "node --enable-source-maps ./itsJustJavascript/devTools/regionsUpdater/update.js", | ||
"runDbMigrations": "yarn typeorm migration:run -d itsJustJavascript/db/dataSource.js", | ||
"refreshPageviews": "node --enable-source-maps ./itsJustJavascript/db/refreshPageviewsFromDatasette.js", | ||
"revertLastDbMigration": "yarn typeorm migration:revert -d itsJustJavascript/db/dataSource.js", | ||
"runRegionsUpdater": "tsx --tsconfig tsconfig.tsx.json devTools/regionsUpdater/update.ts", | ||
"runDbMigrations": "tsx node_modules/typeorm/cli.js migration:run -d db/dataSource.ts", | ||
"refreshPageviews": "tsx --tsconfig tsconfig.tsx.json db/refreshPageviewsFromDatasette.ts", | ||
"revertLastDbMigration": "tsx node_modules/typeorm/cli.js migration:revert -d db/dataSource.ts", | ||
"startAdminServer": "node --enable-source-maps ./itsJustJavascript/adminSiteServer/app.js", | ||
"startAdminDevServer": "tsx watch --tsconfig tsconfig.tsx.json adminSiteServer/app.tsx", | ||
"startLocalCloudflareFunctions": "wrangler pages dev localBake --compatibility-date 2023-10-09", | ||
"startDeployQueueServer": "node --enable-source-maps ./itsJustJavascript/baker/startDeployQueueServer.js", | ||
"startLernaWatcher": "lerna watch --scope '@ourworldindata/*' -- lerna run build --scope=\\$LERNA_PACKAGE_NAME --include-dependents", | ||
"startTmuxServer": "node_modules/tmex/tmex dev \"yarn startTscServer\" \"yarn startLernaWatcher\" \"yarn startAdminServer\" \"yarn startViteServer\"", | ||
"startTscServer": "tsc -b -verbose -watch", | ||
"startTmuxServer": "node_modules/tmex/tmex dev \"yarn startLernaWatcher\" \"yarn startAdminDevServer\" \"yarn startViteServer\"", | ||
"startViteServer": "vite dev", | ||
"startSiteFront": "./devTools/vite/startVite.sh", | ||
"startLocalBakeServer": "http-server ./localBake -p 3000", | ||
|
@@ -39,7 +39,7 @@ | |
"testLint": "eslint .", | ||
"testPrettierAll": "yarn prettier --check \"**/*.{tsx,ts,jsx,js,json,md,html,css,scss,yml}\"", | ||
"testJest": "lerna run buildTests && jest", | ||
"testSiteNavigation": "node --enable-source-maps ./itsJustJavascript/devTools/navigationTest/navigationTest.js", | ||
"testSiteNavigation": "tsx --tsconfig tsconfig.tsx.json devTools/navigationTest/navigationTest.ts", | ||
"generateDbTypes": "npx @rmp135/sql-ts -c db/sql-ts/sql-ts-config.json" | ||
}, | ||
"dependencies": { | ||
|
@@ -249,7 +249,7 @@ | |
"sass": "^1.69.5", | ||
"tmex": "^1.0.8", | ||
"topojson-server": "^3.0.1", | ||
"tsc-watch": "^6.0.4", | ||
"tsx": "^4.10.2", | ||
"vite": "^4.4.10", | ||
"vite-plugin-checker": "^0.6.4", | ||
"vite-plugin-warmup": "^0.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// The top-level config has empty "files", which doesn't work for tsx | ||
// (https://tsx.is/). Seems to be only a problem when using decorators in our | ||
// code: | ||
// https://github.com/privatenumber/tsx/issues/393 | ||
{ | ||
"extends": "./tsconfig.json", | ||
"include": ["**/*"] | ||
} |
Oops, something went wrong.