@vonaffenfels/contentful-teasermanager 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonaffenfels/contentful-teasermanager",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "scripts": {
5
5
  "prepublish": "yarn run build",
6
6
  "dev": "yarn run start",
@@ -99,7 +99,7 @@
99
99
  "@vonaffenfels/slate-editor": "^1.0.5",
100
100
  "webpack": "5.73.0"
101
101
  },
102
- "gitHead": "718a65757ab690aa3e2df05274a9c401ce466b6e",
102
+ "gitHead": "6b627160bbe091e7e7989bc32bdf808e8d3af4e0",
103
103
  "publishConfig": {
104
104
  "access": "public"
105
105
  }
package/webpack.config.js CHANGED
@@ -6,6 +6,7 @@ const {readFileSync} = require("fs");
6
6
  const {CleanWebpackPlugin} = require('clean-webpack-plugin');
7
7
 
8
8
  module.exports = ({
9
+ outPath = path.resolve(__dirname, 'dist'),
9
10
  babelConfig = JSON.parse(readFileSync("../../.babelrc").toString()),
10
11
  componentImportRoot = "@vonaffenfels/slate-editor/src/dev/testComponents",
11
12
  relativePathToComponents = path.resolve(__dirname + "../../../@base/slate-editor/src/dev/testComponents"),
@@ -140,7 +141,7 @@ module.exports = ({
140
141
  libraryTarget: "umd",
141
142
  publicPath: "/",
142
143
  globalObject: "this",
143
- path: path.resolve(__dirname, 'dist'),
144
+ path: outPath,
144
145
  },
145
146
  };
146
147
  };