Skip to content

Commit

Permalink
remove typescript files from nuget (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-hamud committed Jan 16, 2017
1 parent dc1b736 commit 18a5868
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 19 deletions.
1 change: 0 additions & 1 deletion PowerBI.JavaScript.nuspec
Expand Up @@ -18,6 +18,5 @@
<file src="dist\powerbi.js" target="content\scripts" />
<file src="dist\powerbi.min.js" target="content\scripts" />
<file src="dist\powerbi.js.map" target="content\scripts" />
<file src="dist\*.d.ts" target="content\scripts\typings" />
</files>
</package>
2 changes: 1 addition & 1 deletion dist/config.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
declare const config: {
version: string;
type: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/dashboard.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as embed from './embed';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/embed.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as models from 'powerbi-models';
declare global {
Expand Down
2 changes: 1 addition & 1 deletion dist/factories.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/**
* TODO: Need to find better place for these factory functions or refactor how we handle dependency injection
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/ifilterable.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as models from 'powerbi-models';
/**
* Decorates embed components that support filters
Expand Down
2 changes: 1 addition & 1 deletion dist/page.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import { IFilterable } from './ifilterable';
import { IReportNode } from './report';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/powerbi.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as factories from './factories';
import * as models from 'powerbi-models';
Expand Down
4 changes: 2 additions & 2 deletions dist/powerbi.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/powerbi.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/powerbi.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/report.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as embed from './embed';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/service.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as embed from './embed';
import { Report } from './report';
import { Dashboard } from './dashboard';
Expand Down
2 changes: 1 addition & 1 deletion dist/tile.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
import * as models from 'powerbi-models';
import { Embed } from './embed';
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/util.d.ts
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.4 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/**
* Raises a custom event with event data on the specified HTML element.
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "powerbi-client",
"version": "2.2.4",
"version": "2.2.5",
"description": "JavaScript library for embedding Power BI into your apps. Provides service which makes it easy to embed different types of components and an object model which allows easy interaction with these components such as changing pages, applying filters, and responding to data selection.",
"main": "dist/powerbi.js",
"typings": "dist/powerbi.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
@@ -1,5 +1,5 @@
const config = {
version: '2.2.4',
version: '2.2.5',
type: 'js'
};

Expand Down

0 comments on commit 18a5868

Please sign in to comment.