Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit f9db513

Browse files
committed
Merge branch 'main' into feat/encrypt-using-password-hash
2 parents acacc80 + c3ea5a6 commit f9db513

File tree

12 files changed

+6865
-2072
lines changed

12 files changed

+6865
-2072
lines changed

.gitignore

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@ node_modules/
1919
# Coverage reports by jest
2020
coverage
2121

22-
# Dashboard bundle config
23-
nodecg-io-core/dashboard/dist
24-
!nodecg-io-core/dashboard/esbuild.config.js
22+
# Dashboard bundle output from esbuild
23+
dist/
2524

26-
# Debug service bundle config
27-
services/nodecg-io-debug/dashboard/dist
28-
!services/nodecg-io-debug/esbuild.config.js
25+
# Esbuild config
26+
!utils/nodecg-io-esbuild/esbuild.config.js
2927

3028
# Editor configuration
3129
.idea/
@@ -36,9 +34,6 @@ services/nodecg-io-debug/dashboard/dist
3634
!/.vscode/tasks.json
3735
!/.vscode/settings.json
3836

39-
# Lerna temporary files
40-
package.json.lerna_backup
41-
4237
# Configuration of prettier and ESLint
4338
!.eslintrc.js
4439
!.prettierrc.js
@@ -49,9 +44,6 @@ package.json.lerna_backup
4944
# Documentation
5045
docs/
5146

52-
# lerna debug
53-
lerna-debug.log
54-
5547
# nodecg-io-cli install details. Created when installing development version using nodecg-io install.
5648
install.json
5749

jest.config.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ function hasJestConfig(pkg) {
2323

2424
projects = packages.filter((pkg) => hasJestConfig(pkg)).map((v) => `<rootDir>/${path.relative(cwd(), v.dir)}`);
2525

26-
console.log(projects);
27-
2826
/** @type {import('@jest/types').Config.InitialOptions} */
2927
const config = {
3028
projects,

nodecg-io-core/dashboard/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313
"directory": "nodecg-io-core/dashboard"
1414
},
1515
"scripts": {
16-
"clean": "node esbuild.config.js --clean",
17-
"build": "node esbuild.config.js",
18-
"rebuild": "node esbuild.config.js --rebuild",
19-
"watch": "node esbuild.config.js --watch"
16+
"build": "nodecg-io-esbuild --monaco",
17+
"clean": "npm run build -- --clean",
18+
"rebuild": "npm run build -- --rebuild",
19+
"watch": "npm run -- --watch"
2020
},
2121
"devDependencies": {
2222
"esbuild": "^0.16.12",
2323
"monaco-editor": "^0.38.0",
24+
"nodecg-io-esbuild": "^1.0.0",
2425
"@nodecg/types": "^2.1.11",
2526
"typescript": "^5.1.6"
2627
},

0 commit comments

Comments
 (0)