Skip to content

Commit

Permalink
build: get rid of redundant tsconfig.build.json
Browse files Browse the repository at this point in the history
core-rxjs didn't have the correct name set in package.json
somehow framework still needs tsconfig.build.json
  • Loading branch information
marcus-sa committed Sep 12, 2023
1 parent 669e326 commit 3915412
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 29 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/broker/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"options": {
"outputPath": "dist/{projectRoot}",
"main": "{projectRoot}/src/index.ts",
"tsConfig": "{projectRoot}/tsconfig.build.json",
"tsConfig": "{projectRoot}/tsconfig.lib.json",
"rollupConfig": "packages/rollup.config.js",
"project": "{projectRoot}/package.json",
"format": ["esm", "cjs"],
Expand Down
9 changes: 0 additions & 9 deletions packages/broker/tsconfig.build.json

This file was deleted.

4 changes: 2 additions & 2 deletions packages/core-rxjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
### Installation

```
npm install @deepkit/core-rxjs-rxjs
npm install @deepkit/core-rxjs
```


### Usage example

```typescript
import {Subscriptions} from "@deepkit/core-rxjs-rxjs";
import {Subscriptions} from "@deepkit/core-rxjs";

class MyComponent implements OnDestroy, OnInit {
private subs = new Subscriptions;
Expand Down
2 changes: 1 addition & 1 deletion packages/core-rxjs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@deepkit/core-rxjs-rxjs",
"name": "@deepkit/core-rxjs",
"version": "1.0.1-alpha.97",
"description": "Deepkit core-rxjs rxjs library",
"types": "./src/index.d.ts",
Expand Down
12 changes: 0 additions & 12 deletions packages/rpc/src/core-rxjs.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/rpc/src/lib/client/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { ClientProgress } from '../writer.js';
import type { WritableClient } from './client.js';
import { EntityState, EntitySubjectStore } from './entity-state.js';
import { assertType, deserializeType, ReflectionKind, Type, TypeObjectLiteral, typeOf } from '@deepkit/type';
import { ProgressTracker, ProgressTrackerState } from '../../core-rxjs';
import { ProgressTracker, ProgressTrackerState } from '@deepkit/core-rxjs';

interface ResponseActionObservableError extends rpcActionObservableSubscribeId, WrappedV {
}
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc/src/lib/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* updated, added and removed. When such a change happens, an event is triggered* you can listen on.
*/
import { ClassType, getClassName, isArray } from '@deepkit/core';
import { tearDown } from '../core-rxjs';
import { tearDown } from '@deepkit/core-rxjs';
import { ReplaySubject, Subject, TeardownLogic } from 'rxjs';
import { EntitySubject, IdInterface } from './model.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/rpc/src/lib/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

import { ClassType, isObject } from '@deepkit/core';
import { tearDown } from '../core-rxjs';
import { tearDown } from '@deepkit/core-rxjs';
import { arrayBufferTo, entity } from '@deepkit/type';
import { BehaviorSubject, Observable, Subject, TeardownLogic } from 'rxjs';
import { skip } from 'rxjs/operators';
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc/src/lib/server/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

import { ClassType, collectForMicrotask, getClassName, isPrototypeOfBase, toFastProperties } from '@deepkit/core';
import { isBehaviorSubject, isSubject, ProgressTracker, ProgressTrackerState } from '../../core-rxjs';
import { isBehaviorSubject, isSubject, ProgressTracker, ProgressTrackerState } from '@deepkit/core-rxjs';
import {
assertType,
findMember,
Expand Down

0 comments on commit 3915412

Please sign in to comment.