-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
321 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,34 +6,34 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"batchTagWithGpt": "node --enable-source-maps ./itsJustJavascript/baker/batchTagWithGpt.js", | ||
"buildAndDeploySite": "node --enable-source-maps ./itsJustJavascript/baker/buildAndDeploySite.js", | ||
"batchTagWithGpt": "tsx baker/batchTagWithGpt.ts", | ||
"buildAndDeploySite": "tsx baker/buildAndDeploySite.ts", | ||
"buildCoverage": "jest --coverage=true --coverageProvider=v8", | ||
"buildLocalBake": "node --enable-source-maps ./itsJustJavascript/baker/buildLocalBake.js", | ||
"buildLocalBake": "tsx 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", | ||
"buildWordpressPlugin": "cd ./wordpress/web/app/plugins/owid && yarn && yarn build", | ||
"bakeGdocPosts": "node --enable-source-maps ./itsJustJavascript/baker/bakeGdocPosts.js", | ||
"bakeGdocPosts": "tsx baker/bakeGdocPosts.ts", | ||
"cleanTsc": "rm -rf itsJustJavascript && tsc -b -clean", | ||
"deployWordpress": "./wordpress/scripts/deploy.sh", | ||
"deployContentPreview": "PREVIEW_BRANCH=${PREVIEW_BRANCH:-} ./ops/buildkite/deploy-content-preview", | ||
"fetchServerStatus": "node --enable-source-maps ./itsJustJavascript/baker/liveCommit.js", | ||
"fetchServerStatus": "tsx 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", | ||
"runPostUpdateHook": "node --enable-source-maps ./itsJustJavascript/baker/postUpdatedHook.js", | ||
"runRegionsUpdater": "tsx devTools/regionsUpdater/update.ts", | ||
"runDbMigrations": "tsx node_modules/typeorm/cli.js migration:run -d db/dataSource.ts", | ||
"refreshPageviews": "tsx db/refreshPageviewsFromDatasette.ts", | ||
"revertLastDbMigration": "tsx node_modules/typeorm/cli.js migration:revert -d db/dataSource.ts", | ||
"runPostUpdateHook": "tsx baker/postUpdatedHook.ts", | ||
"startAdminServer": "node --enable-source-maps ./itsJustJavascript/adminSiteServer/app.js", | ||
"startAdminDevServer": "tsx watch 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", | ||
"startWordpressPlugin": "cd ./wordpress/web/app/plugins/owid && yarn && yarn start", | ||
"startSiteFront": "./devTools/vite/startVite.sh", | ||
|
@@ -43,7 +43,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 devTools/navigationTest/navigationTest.ts", | ||
"generateDbTypes": "npx @rmp135/sql-ts -c db/sql-ts/sql-ts-config.json" | ||
}, | ||
"dependencies": { | ||
|
@@ -256,7 +256,7 @@ | |
"sql-fixtures": "^1.0.4", | ||
"tmex": "^1.0.8", | ||
"topojson-server": "^3.0.1", | ||
"tsc-watch": "^6.0.4", | ||
"tsx": "^4.7.3", | ||
"vite": "^4.4.10", | ||
"vite-plugin-checker": "^0.6.2", | ||
"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 |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
"composite": false, | ||
"baseUrl": "./" | ||
}, | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "./gridLang" | ||
|
Oops, something went wrong.