powerbi-visuals-tools 6.1.1 → 6.1.3

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/Changelog.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  This page contains information about changes to the PowerBI Visual Tools (pbiviz).
4
4
 
5
+ ## 6.1.2
6
+ * Fixed issue with `process/browser` not being resolved correctly in webpack config
7
+
5
8
  ## 6.1.1
6
9
  * Fixed bug with source maps generation (now using `eval-source-map` instead of `source-map`)
7
10
 
@@ -35,6 +35,12 @@ const webpackConfig = {
35
35
  amd: false
36
36
  }
37
37
  },
38
+ {
39
+ test: /\.m?js/,
40
+ resolve: {
41
+ fullySpecified: false
42
+ }
43
+ },
38
44
  {
39
45
  test: /\.json$/,
40
46
  loader: "json-loader",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powerbi-visuals-tools",
3
- "version": "6.1.1",
3
+ "version": "6.1.3",
4
4
  "description": "Command line tool for creating and publishing visuals for Power BI",
5
5
  "main": "./bin/pbiviz.js",
6
6
  "type": "module",
@@ -58,7 +58,8 @@
58
58
  "mini-css-extract-plugin": "^2.9.2",
59
59
  "os-browserify": "^0.3.0",
60
60
  "path-browserify": "^1.0.1",
61
- "powerbi-visuals-webpack-plugin": "^4.3.0",
61
+ "powerbi-visuals-api": "~5.3.0",
62
+ "powerbi-visuals-webpack-plugin": "^4.3.1",
62
63
  "process": "^0.11.10",
63
64
  "punycode": "^2.3.1",
64
65
  "querystring-es3": "^0.2.1",
@@ -80,7 +81,7 @@
80
81
  },
81
82
  "devDependencies": {
82
83
  "@typescript-eslint/eslint-plugin": "^8.32.1",
83
- "eslint": "^9.26.0",
84
+ "eslint": "^9.29.0",
84
85
  "jasmine": "5.3.1",
85
86
  "jasmine-spec-reporter": "7.0.0",
86
87
  "semver": "7.7.2",