Skip to content

Commit

Permalink
fix(aot): added missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Jan 19, 2017
1 parent 08bbceb commit d40a299
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 260 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,22 @@
"@angular/forms": "^2.3.0"
},
"devDependencies": {
"@angular/common": "2.4.3",
"@angular/compiler": "2.4.3",
"@angular/compiler-cli": "2.4.3",
"@angular/core": "2.4.3",
"@angular/forms": "2.4.3",
"@angular/http": "2.4.3",
"@angular/language-service": "2.4.3",
"@angular/platform-browser": "2.4.3",
"@angular/platform-browser-dynamic": "2.4.3",
"@angular/router": "3.4.3",
"@angular/common": "^2.4.4",
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"@angular/core": "^2.4.4",
"@angular/forms": "^2.4.4",
"@angular/http": "^2.4.4",
"@angular/language-service": "^2.4.4",
"@angular/platform-browser": "^2.4.4",
"@angular/platform-browser-dynamic": "^2.4.4",
"@angular/router": "^3.4.4",
"@angular/tsc-wrapped": "0.5.1",
"@ngtools/webpack": "1.2.3",
"@types/jasmine": "2.5.40",
"@types/jasmine": "^2.5.41",
"@types/marked": "0.0.28",
"@types/node": "7.0.0",
"@types/webpack": "2.2.0",
"@types/webpack": "^2.2.2",
"angular-cli": "1.0.0-beta.25.5",
"bootstrap": "3.3.7",
"chokidar-cli": "1.2.0",
Expand Down Expand Up @@ -109,7 +109,7 @@
"marked": "0.3.6",
"ng2-page-scroll": "4.0.0-beta.2",
"ngm-cli": "0.4.3",
"npm-run-all": "4.0.0",
"npm-run-all": "^4.0.1",
"pre-commit": "1.2.2",
"protractor": "5.0.0",
"reflect-metadata": "0.1.9",
Expand All @@ -122,8 +122,8 @@
"tslint-config-valorsoft": "1.2.0",
"typedoc": "0.5.5",
"typescript": "2.1.5",
"wallaby-webpack": "0.0.30",
"wallaby-webpack": "^0.0.31",
"webdriver-manager": "11.1.1",
"zone.js": "0.7.5"
"zone.js": "^0.7.6"
}
}
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,5 @@ export * from './typeahead';
export * from './popover';
export * from './utils/ng2-bootstrap-config';
export * from './utils/decorators';
export * from './component-loader';
export * from './positioning';
8 changes: 2 additions & 6 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,13 @@
"noEmitHelpers": false,
"noImplicitAny": true,
"declaration": true,
"skipLibCheck": true,
"skipLibCheck": false,
"stripInternal": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"lib": ["dom", "es6"],
"types": [
"jasmine",
"webpack"
],
"typeRoots": [
"../node_modules/@types"
"jasmine"
]
},
"exclude": [
Expand Down
Loading

0 comments on commit d40a299

Please sign in to comment.