UNPKG

735 BMarkdownView Raw
1[![CircleCI](https://circleci.com/gh/Microsoft/Essex-PowerBI-visuals-base/tree/master.svg?style=svg)](https://circleci.com/gh/Microsoft/Essex-PowerBI-visuals-base/tree/master)
2
3# Essex PBI Base
4
5A collection of utilities for creating custom visuals.
6
7# Notes
8## Bundling
9Implementers should mark powerbi as an externally loaded resource so that the PowerBI client codebase
10is not bundled into custom visuals.
11
12```
13externals: {
14 "powerbi-visuals/lib/powerbi-visuals": "powerbi"
15}
16```
17
18## Build Support
19To use the bundling tasks, add the following to your gulpfile.js
20
21```javascript
22// gulpfile.js
23const gulp = require('gulp');
24const configure = require("essex.powerbi.base/dist/build_scripts").default;
25configure(gulp, __dirname);
26```