Commit d1212384 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Export all the things !

No related merge requests found
Showing with 18 additions and 14 deletions
+18 -14
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1, "version": 1,
"newProjectRoot": ".", "newProjectRoot": ".",
"defaultProject": "ngx-rxtools",
"projects": { "projects": {
"ngx-rxtools": { "ngx-rxtools": {
"root": "", "root": "",
...@@ -55,6 +56,5 @@ ...@@ -55,6 +56,5 @@
} }
} }
} }
}, }
"defaultProject": "default"
} }
...@@ -72,8 +72,12 @@ ...@@ -72,8 +72,12 @@
} }
}, },
"lint-staged": { "lint-staged": {
"*.spec.ts": [
"tslint -p tsconfig.spec.json --fix",
"git add"
],
"*.ts": [ "*.ts": [
"ng lint --fix --files", "tslint -p tsconfig.lib.json --fix",
"git add" "git add"
], ],
"*.{js,json}": [ "*.{js,json}": [
......
export { RouteParam, QueryParam } from './route-param.decorator'; export * from './route-param.decorator';
export { SubjectAccessors, SubjectSetter } from './subject-accessors.decorator'; export * from './subject-accessors.decorator';
export { SubscribeOnInit } from './subscribe-on-init.decorator'; export * from './subscribe-on-init.decorator';
import './decorators'; export * from './decorators';
import './rxjs'; export * from './rxjs';
export { lazy } from './lazy.observable'; export * from './lazy.observable';
export { safeCombineLatest } from './safe-combine-latest.observable'; export * from './safe-combine-latest.observable';
export { safeForkJoin } from './safe-fork-join.observable'; export * from './safe-fork-join.observable';
export { select } from './select.operator'; export * from './select.operator';
export { untilDestroyed } from './until-destroyed.operator'; export * from './until-destroyed.operator';
export { consoleObserver } from './console.observer'; export * from './console.observer';
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment