Skip to content

Commit

Permalink
refactor(movex): ♻️ take the client dir out
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielCTroia committed Nov 6, 2023
1 parent dad02bb commit 346940e
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 13 deletions.
9 changes: 6 additions & 3 deletions libs/movex-master/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
"types": [
"jest",
"node"
]
},
"include": [
"jest.config.ts",
Expand All @@ -16,5 +19,5 @@
"**/*.test.jsx",
"**/*.spec.jsx",
"**/*.d.ts"
, "../movex/src/lib/client/MovexResourceObservable.spec.ts" ]
}
]
}
2 changes: 1 addition & 1 deletion libs/movex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "movex",
"version": "0.1.3-2",
"version": "0.1.3-9",
"license": "MIT",
"description": "Movex is a Multiplayer (Game) State Synchronization Library using Deterministic Action Propagation without the need to write Server Specific Code.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion libs/movex/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from './lib';

// Aliased
export * as MovexClient from './lib/client';
export * as MovexClient from './lib';

export {
type ResourceIdentifier,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions libs/movex/src/lib/client/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion libs/movex/src/lib/client/todo

This file was deleted.

File renamed without changes.
7 changes: 5 additions & 2 deletions libs/movex/src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
export * from './client/Movex';
export * from './client/MovexFromDefintion';
export * from './Movex';
export * from './init';
export * from './MovexResource';
export * from './MovexBoundResource';
export * from './MovexFromDefintion';
File renamed without changes.

0 comments on commit 346940e

Please sign in to comment.