Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #235 from Sage/update-webpack-config
Browse files Browse the repository at this point in the history
Replace relative path with absolute path
  • Loading branch information
Dawid Zarzycki authored Nov 21, 2019
2 parents b83a25d + f0f983b commit da9c58f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 9.0.0

Change relative path to absolute path in `webpack.config.js` to fix build issue on demo site

# 8.2.0

The `package-lock.json` was updated to fix vulnerability in `handlebars`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "carbon-factory",
"version": "8.2.0",
"version": "9.0.0",
"description": "Tools to help create user interfaces with Carbon and React.",
"scripts": {},
"author": "The Sage Group plc",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = function(opts) {
resolve: {
modules: lookupPaths.concat([
_p.resolve(path, './src'),
_p.resolve(path, './node_modules')
'node_modules'
]),
extensions: ['.wasm', '.mjs', '.js', '.json', '.ts', '.tsx']
}
Expand Down

0 comments on commit da9c58f

Please sign in to comment.