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 form layout to new schema & collection, called "schemas" #280

Merged
merged 9 commits into from
Jan 27, 2025
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@types/express-useragent": "^1.0.2",
"@types/luxon": "^2.3.2",
"@types/marked": "^4.0.3",
"@types/node": "^18.13.0",
"@types/node": "^22.9.0",
"@types/passport": "^1.0.11",
"@types/qunit": "^2.19.3",
"@types/sanitize-html": "^2.6.2",
Expand All @@ -47,11 +47,11 @@
"less": "~4.1.2",
"less-plugin-clean-css": "^1.5.1",
"minimatch": "~3.0.5",
"nodemon": "^2.0.20",
"nodemon": "^3.1.9",
"oh-no-i-insist": "^1.1.1",
"prettier-plugin-svelte": "^2.8.1",
"react": "^18.2.0",
"ts-node": "^10.7.0",
"typescript": "^4.9.5"
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}
8 changes: 6 additions & 2 deletions primary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"scripts": {
"start": "npx nodemon --ext ts ./src/www.ts",
"update": "yarn && yarn upgrade --pattern 'scoutradioz*'",
"build": "tsc && yarn run compile-static",
"build": "npx tsc && yarn run compile-static",
"win-build": "yarn run build",
"---readme---": "Use the win-X scripts if you're using Windows. Always upload to test or QA first, then extensively test before promoting to prod.",
"archive": "node ../scripts/uploadversion.js --archive --folder $npm_package_config_folder",
Expand All @@ -38,7 +38,7 @@
"rollback-prod": "node ../scripts/rollbackversion.js --function-name $npm_package_config_functionFullName",
"---readme3---": "Scripts related to compiling static files from Typescript -> JS and LESS -> CSS.",
"compile-less": "echo 'Compiling and minifying LESS' && node ../scripts/compileLess.js",
"compile-ts": "echo 'Compiling TypeScript' && cd public-src && yarn && cd ts-bundled && tsc && cd ../ts && (mv ../../public/js/bundle.d.ts . || move ../../public/js/bundle.d.ts .) && tsc",
"compile-ts": "echo 'Compiling TypeScript' && cd public-src && yarn && cd ts-bundled && npx tsc && cd ../ts && (mv ../../public/js/bundle.d.ts . || move ../../public/js/bundle.d.ts .) && npx tsc",
"compile-static": "yarn run compile-less && yarn run compile-ts"
},
"license": "Apache-2.0",
Expand Down Expand Up @@ -76,6 +76,10 @@
"ext": "js,ts,pug,json"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/node": "22.9.0",
"monaco-editor": "^0.52.2",
"monaco-types": "^0.1.0",
"scoutradioz-types": "file:../scoutradioz-types"
}
}
2 changes: 1 addition & 1 deletion primary/public-src/ts-bundled/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/* Language and Environment */
"target": "ES2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
"lib": ["DOM"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
// "jsx": "preserve", /* Specify what JSX code is generated. */
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
Expand Down
3 changes: 0 additions & 3 deletions primary/public-src/ts/bundle.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
/// <reference types="jquery" />
/// <reference types="jquery" />
/// <reference types="jquery" />
/**
* Modal dialog element with a close button.
*/
Expand Down
Loading