Skip to content

Commit

Permalink
fix(package): update aurelia tools and dts generator
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 1, 2015
1 parent 61b9c19 commit 379e53e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
10 changes: 7 additions & 3 deletions build/babel-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ module.exports = {
"babel-dts-generator"
],
extra: {
packageName: paths.packageName,
typings: '',
suppressModulePath: true
dts: {
packageName: paths.packageName,
typings: '',
suppressModulePath: true,
suppressComments: false,
memberOutputFilter: /^_.*/
}
}
};
2 changes: 1 addition & 1 deletion dist/amd/aurelia-path.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-path' {
export function relativeToFile(name: string, file: string): string;
export function join(path1: string, path2: string): string;
export function buildQueryString(a: string, traditional: boolean): string;
export function buildQueryString(a: string, traditional?: boolean): string;
}
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-path.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-path' {
export function relativeToFile(name: string, file: string): string;
export function join(path1: string, path2: string): string;
export function buildQueryString(a: string, traditional: boolean): string;
export function buildQueryString(a: string, traditional?: boolean): string;
}
2 changes: 1 addition & 1 deletion dist/es6/aurelia-path.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-path' {
export function relativeToFile(name: string, file: string): string;
export function join(path1: string, path2: string): string;
export function buildQueryString(a: string, traditional: boolean): string;
export function buildQueryString(a: string, traditional?: boolean): string;
}
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-path' {
export function relativeToFile(name: string, file: string): string;
export function join(path1: string, path2: string): string;
export function buildQueryString(a: string, traditional: boolean): string;
}
export function buildQueryString(a: string, traditional?: boolean): string;
}
2 changes: 1 addition & 1 deletion dist/system/aurelia-path.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module 'aurelia-path' {
export function relativeToFile(name: string, file: string): string;
export function join(path1: string, path2: string): string;
export function buildQueryString(a: string, traditional: boolean): string;
export function buildQueryString(a: string, traditional?: boolean): string;
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
}
},
"devDependencies": {
"aurelia-tools": "^0.1.3",
"babel-dts-generator": "^0.2.4",
"aurelia-tools": "^0.1.6",
"babel-dts-generator": "^0.2.5",
"conventional-changelog": "0.0.11",
"del": "^1.1.0",
"gulp": "^3.8.10",
Expand Down

0 comments on commit 379e53e

Please sign in to comment.