Skip to content

Commit fac9b4c

Browse files
committed
bumping uuid and fixing several deprecation warnings
Signed-off-by: Matt Wrock <matt@mattwrock.com>
1 parent 5c9b7a6 commit fac9b4c

5 files changed

Lines changed: 19 additions & 219 deletions

File tree

components/builder-web/app/package/job-detail/_job-detail.component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use 'sass:color';
2+
13
.job-detail-component {
24
position: relative;
35

@@ -151,7 +153,7 @@
151153
font-family: $monospace-font-family;
152154
font-size: $monospace-font-size;
153155
padding: $default-padding;
154-
background: darken($dark-blue, 4%);
156+
background: color.adjust($dark-blue, $lightness: -4%);
155157
border-radius: $default-radius;
156158
color: $medium-gray;
157159
overflow: auto;

components/builder-web/package-lock.json

Lines changed: 5 additions & 209 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/builder-web/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "Apache-2.0",
1313
"scripts": {
1414
"build": "concurrently \"npm run build-js\" \"npm run build-css\"",
15-
"build-css": "sass --load-path=node_modules/bourbon-neat/core --load-path=node_modules/bourbon/app/assets/stylesheets --load-path=node_modules/normalize-scss/sass --load-path=node_modules/normalize-scss/node_modules/support-for/sass --load-path=node_modules --load-path=stylesheets --load-path=app --style=compressed app/app.scss assets/app.css",
15+
"build-css": "sass --load-path=node_modules/bourbon-neat/core --load-path=node_modules/bourbon/app/assets/stylesheets --load-path=node_modules/normalize-scss/sass --load-path=node_modules/normalize-scss/node_modules/support-for/sass --load-path=node_modules --load-path=stylesheets --load-path=app --style=compressed --silence-deprecation=import --silence-deprecation=global-builtin --silence-deprecation=if-function --silence-deprecation=slash-div app/app.scss assets/app.css",
1616
"build-css-watch": "npm run build-css -- --watch",
1717
"build-e2e": "bin/e2e",
1818
"build-js": "webpack --config webpack.conf.js",
@@ -24,8 +24,8 @@
2424
"lint": "npm run lint-js",
2525
"lint-css": "echo 'CSS linting disabled (sass-lint removed; use stylelint as a replacement)'",
2626
"lint-css-watch": "echo 'CSS lint-watch not available'",
27-
"lint-js": "tslint app**/*.ts",
28-
"lint-js-watch": "watch 'npm run lint-js'",
27+
"lint-js": "echo 'tslint removed; use eslint with @typescript-eslint for linting'",
28+
"lint-js-watch": "echo 'lint-watch not available'",
2929
"help": "cat README.md",
3030
"repl": "cd app && ts-node",
3131
"serve-e2e": "http-server ./dist -p 3000 --no-cache",
@@ -60,7 +60,7 @@
6060
"redux-thunk": "^2.4.2",
6161
"reflect-metadata": "^0.2.2",
6262
"rxjs": "^7.8.1",
63-
"uuid": "^9.0.1",
63+
"uuid": "^14.0.0",
6464
"zone.js": "^0.15.0"
6565
},
6666
"devDependencies": {
@@ -86,9 +86,7 @@
8686
"sass": "^1.69.5",
8787
"ts-loader": "^9.5.1",
8888
"ts-node": "^10.9.2",
89-
"tslint": "^5.20.1",
9089
"typescript": "^5.8.0",
91-
"watch": "^0.13.0",
9290
"webpack": "^5.93.0",
9391
"webpack-cli": "^5.1.4"
9492
}

0 commit comments

Comments
 (0)