Skip to content

Commit

Permalink
bump to 1.1.0-SNAPSHOT. Fixed uuidv4 import
Browse files Browse the repository at this point in the history
  • Loading branch information
stevespringett committed Mar 26, 2020
1 parent 78e96a5 commit 19be9f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dependencytrack/frontend",
"version": "1.0.0",
"version": "1.1.0-SNAPSHOT",
"description": "Single Page Application for OWASP Dependency-Track",
"author": "Steve Springett",
"homepage": "https://dependencytrack.org/",
Expand All @@ -12,7 +12,7 @@
},
"scripts": {
"start": "npm run serve",
"serve": "vue-cli-service serve",
"serve": "npm run prebuild && vue-cli-service serve",
"prebuild": "node update-embedded-version.js",
"build": "npm run prebuild && vue-cli-service build && npm run bom",
"lint": "vue-cli-service lint",
Expand Down
2 changes: 1 addition & 1 deletion update-embedded-version.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require("fs");
const filePath = "./package.json";
const versionPath = "./src/version.json";
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');

const packageJson = JSON.parse(fs.readFileSync(filePath).toString());

Expand Down

0 comments on commit 19be9f6

Please sign in to comment.