Skip to content

Commit

Permalink
fix(create): use path to build files in webpack conf instead of symli…
Browse files Browse the repository at this point in the history
…nk (#76)

This aids Windows users having problems with the demo + removes some
obscurity for users trying to set up Diez in their codebases.
  • Loading branch information
roperzh committed Feb 13, 2020
1 parent 1bf2e5e commit 3e56c39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "diez-lorem-ipsum",
"version": "10.2.2",
"version": "10.2.3",
"license": "MIT",
"main": "./index.js",
"exports": {
"require": "./index.js",
"import": "./wrapper.mjs"
},
"dependencies": {
"@diez/web-sdk-common": "^10.2.2",
"@diez/web-sdk-common": "^10.2.3",
"lottie-web": "^5.5.2"
}
}
1 change: 0 additions & 1 deletion examples/lorem-ipsum/example-codebases/web/public/diez

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const webpackConfig = {
}),
new CopyWebpackPlugin([
{from: 'public'},
{from: 'public/diez', to: 'diez'},
{from: '../../design-language/build/diez-lorem-ipsum-web/static', to: 'diez'},
]),
new DiezWebpackPlugin({
sdk: 'diez-lorem-ipsum',
Expand Down

0 comments on commit 3e56c39

Please sign in to comment.