Skip to content
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
1 change: 1 addition & 0 deletions web-console/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ index.html
.tscache
tscommand-*.tmp.txt

licenses.json
140 changes: 140 additions & 0 deletions web-console/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions web-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"pretest": "./script/build",
"run": "./script/run",
"test": "jest --silent 2>&1",
"generate-licenses-file": "license-checker --production --json --out licenses.json",
"check-licenses": "license-checker --production --onlyAllow 'Apache-1.1;Apache-2.0;BSD-2-Clause;BSD-3-Clause;MIT;CC0-1.0' --summary",
"start": "webpack-dev-server --hot --open"
},
"dependencies": {
Expand Down Expand Up @@ -55,6 +57,7 @@
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^24.0.0",
"license-checker": "^25.0.1",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"node-sass-chokidar": "^1.3.4",
Expand Down
21 changes: 21 additions & 0 deletions web-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@
<installDirectory>${project.build.directory}</installDirectory>
</configuration>
</execution>
<execution>
<id>license-check</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run check-licenses</arguments>
<workingDirectory>${project.build.directory}</workingDirectory>
</configuration>
</execution>
<execution>
<id>test-console</id>
<goals>
Expand All @@ -74,6 +84,17 @@
<workingDirectory>${project.build.directory}</workingDirectory>
</configuration>
</execution>

<execution>
<id>generate-licenses-file</id>
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>run generate-licenses-file</arguments>
<workingDirectory>${project.build.directory}</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down