Fix build issues (#104)
* fix linting issues on webpack.config.js * sync with demo plugin, go mod tidy * npm audit fix There's a rash of lodash issues right now that have no available fix, but I'm fixing the remaining issues. * use exact versions * update webapp/package-lock.json too * manually clean up go.mod/go.sum * private package.json
This commit is contained in:
parent
a49d6f6dd4
commit
becbbc9685
5 changed files with 5006 additions and 1333 deletions
|
@ -42,6 +42,7 @@ module.exports = {
|
|||
modules: [
|
||||
'src',
|
||||
'node_modules',
|
||||
path.resolve(__dirname),
|
||||
],
|
||||
extensions: ['*', '.js', '.jsx', '.ts', '.tsx'],
|
||||
},
|
||||
|
@ -69,7 +70,9 @@ module.exports = {
|
|||
{
|
||||
loader: 'sass-loader',
|
||||
options: {
|
||||
includePaths: ['node_modules/compass-mixins/lib', 'sass'],
|
||||
sassOptions: {
|
||||
includePaths: ['node_modules/compass-mixins/lib', 'sass'],
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
Reference in a new issue