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 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": ".",
"defaultProject": "ngx-rxtools",
"projects": {
"ngx-rxtools": {
"root": "",
......@@ -55,6 +56,5 @@
}
}
}
},
"defaultProject": "default"
}
}
......@@ -72,8 +72,12 @@
}
},
"lint-staged": {
"*.spec.ts": [
"tslint -p tsconfig.spec.json --fix",
"git add"
],
"*.ts": [
"ng lint --fix --files",
"tslint -p tsconfig.lib.json --fix",
"git add"
],
"*.{js,json}": [
......
export { RouteParam, QueryParam } from './route-param.decorator';
export { SubjectAccessors, SubjectSetter } from './subject-accessors.decorator';
export { SubscribeOnInit } from './subscribe-on-init.decorator';
export * from './route-param.decorator';
export * from './subject-accessors.decorator';
export * from './subscribe-on-init.decorator';
import './decorators';
import './rxjs';
export * from './decorators';
export * from './rxjs';
export { lazy } from './lazy.observable';
export { safeCombineLatest } from './safe-combine-latest.observable';
export { safeForkJoin } from './safe-fork-join.observable';
export { select } from './select.operator';
export { untilDestroyed } from './until-destroyed.operator';
export { consoleObserver } from './console.observer';
export * from './lazy.observable';
export * from './safe-combine-latest.observable';
export * from './safe-fork-join.observable';
export * from './select.operator';
export * from './until-destroyed.operator';
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