Compare commits

...

3 Commits

Author SHA1 Message Date
Jamie V
b3036be220 adding clean: true back in 2022-06-14 17:58:52 -07:00
Jamie V
99c37a2047 removing clean: true, vista build hanging on cleaning logs 2022-06-14 17:34:21 -07:00
Jamie V
871378d081 seeing if git info is messin with other installs 2022-06-14 17:21:00 -07:00

View File

@@ -7,12 +7,14 @@ const webpack = require('webpack');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const {VueLoaderPlugin} = require('vue-loader');
const gitRevision = require('child_process')
.execSync('git rev-parse HEAD')
.toString().trim();
const gitBranch = require('child_process')
.execSync('git rev-parse --abbrev-ref HEAD')
.toString().trim();
// const gitRevision = require('child_process')
// .execSync('git rev-parse HEAD')
// .toString().trim();
// const gitBranch = require('child_process')
// .execSync('git rev-parse --abbrev-ref HEAD')
// .toString().trim();
const gitRevision = 'testing';
const gitBranch = 'testing';
/** @type {import('webpack').Configuration} */
const config = {