Skip to content

Commit

Permalink
UI: Update a bunch of JS dependencies (#6734)
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy authored May 3, 2023
1 parent 63f5230 commit cfe7a2a
Show file tree
Hide file tree
Showing 4 changed files with 1,078 additions and 1,077 deletions.
1 change: 0 additions & 1 deletion ui/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ module.exports = {
indent: "off",
"jsdoc/check-alignment": "error",
"jsdoc/check-indentation": "error",
"jsdoc/newline-after-description": "error",
"linebreak-style": "off",
"max-classes-per-file": ["error", 1],
"max-len": "off",
Expand Down
3 changes: 2 additions & 1 deletion ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ val npmInstall =
inputs.property("node.modules.dir", project.projectDir)
inputs.property("node.version", node.version)
inputs.property("npm.version", node.npmVersion)
inputs.files("package.json", "package-lock.json").withPathSensitivity(PathSensitivity.RELATIVE)
outputs.files("package-lock.json")
outputs.dir(shadowPackageJson)
logging.captureStandardOutput(LogLevel.INFO)
logging.captureStandardError(LogLevel.LIFECYCLE)
Expand Down Expand Up @@ -198,6 +198,7 @@ val npmBuild =
outputs.dir(npmBuildDir)
// Remove all previously generated output
doFirst(DeleteFiles(fs, npmBuildTarget))
doLast(DeleteFiles(fs, nodeModulesDir.resolve(".cache")))
args.set(listOf("run", "build"))
environment.put("GENERATE_SOURCEMAP", "false")
environment.put("DISABLE_ESLINT_PLUGIN", "false")
Expand Down
Loading

0 comments on commit cfe7a2a

Please sign in to comment.