final cleanup

This commit is contained in:
ThatOneCalculator 2022-12-11 17:49:14 -08:00
parent 44a457b308
commit 1ee6a52a8a
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
5 changed files with 2 additions and 4 deletions

View File

@ -19,7 +19,7 @@
"start:test": "yarn workspace backend run start:test", "start:test": "yarn workspace backend run start:test",
"init": "yarn migrate", "init": "yarn migrate",
"migrate": "yarn workspace backend run migrate", "migrate": "yarn workspace backend run migrate",
"revertMig": "yarn workspace backend run revertMig", "revertmigration": "yarn workspace backend run revertmigration",
"migrateandstart": "yarn migrate && yarn start", "migrateandstart": "yarn migrate && yarn start",
"gulp": "gulp build", "gulp": "gulp build",
"watch": "yarn dev", "watch": "yarn dev",

Binary file not shown.

View File

@ -7,7 +7,7 @@
"start": "node ./built/index.js", "start": "node ./built/index.js",
"start:test": "NODE_ENV=test node ./built/index.js", "start:test": "NODE_ENV=test node ./built/index.js",
"migrate": "typeorm migration:run -d ormconfig.js", "migrate": "typeorm migration:run -d ormconfig.js",
"revertMig": "typeorm migration:revert -d ormconfig.js", "revertmigration": "typeorm migration:revert -d ormconfig.js",
"build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json", "build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json",
"watch": "node watch.mjs", "watch": "node watch.mjs",
"lint": "eslint --quiet \"src/**/*.ts\"", "lint": "eslint --quiet \"src/**/*.ts\"",

View File

@ -47,8 +47,6 @@ html
each href in clientEntry.css each href in clientEntry.css
link(rel='preload' href=`/assets/${href}` as='style') link(rel='preload' href=`/assets/${href}` as='style')
link(rel='stylesheet' href='/assets/phosphor/icons.css')
title title
block title block title
= title || 'Calckey' = title || 'Calckey'

Binary file not shown.