From 027ace4b512b91111006fdefeec529b70ca844d5 Mon Sep 17 00:00:00 2001 From: lindajoy Date: Mon, 4 Jul 2022 10:14:22 +0300 Subject: [PATCH] added project.json --- iote/bricks-angular/project.json | 31 ++++++++++++++++++++++++++ iote/bricks-angular/src/index.ts | 6 ++--- iote/bricks/project.json | 31 ++++++++++++++++++++++++++ iote/cqrs/project.json | 31 ++++++++++++++++++++++++++ iote/exceptions/project.json | 31 ++++++++++++++++++++++++++ iote/local-persistance/project.json | 31 ++++++++++++++++++++++++++ iote/state/project.json | 31 ++++++++++++++++++++++++++ iote/time/project.json | 31 ++++++++++++++++++++++++++ iote/ui-workflows/project.json | 31 ++++++++++++++++++++++++++ ngfire/admin-data/project.json | 31 ++++++++++++++++++++++++++ ngfire/angular/project.json | 31 ++++++++++++++++++++++++++ ngfire/bots/project.json | 31 ++++++++++++++++++++++++++ ngfire/files/project.json | 31 ++++++++++++++++++++++++++ ngfire/firestore-qbuilder/project.json | 31 ++++++++++++++++++++++++++ ngfire/functions/project.json | 31 ++++++++++++++++++++++++++ ngfire/infinite-scroll/project.json | 31 ++++++++++++++++++++++++++ ngfire/multi-lang/project.json | 31 ++++++++++++++++++++++++++ ngfire/nest/project.json | 31 ++++++++++++++++++++++++++ ngfire/state/project.json | 31 ++++++++++++++++++++++++++ ngfire/time/project.json | 31 ++++++++++++++++++++++++++ 20 files changed, 592 insertions(+), 3 deletions(-) create mode 100644 iote/bricks-angular/project.json create mode 100644 iote/bricks/project.json create mode 100644 iote/cqrs/project.json create mode 100644 iote/exceptions/project.json create mode 100644 iote/local-persistance/project.json create mode 100644 iote/state/project.json create mode 100644 iote/time/project.json create mode 100644 iote/ui-workflows/project.json create mode 100644 ngfire/admin-data/project.json create mode 100644 ngfire/angular/project.json create mode 100644 ngfire/bots/project.json create mode 100644 ngfire/files/project.json create mode 100644 ngfire/firestore-qbuilder/project.json create mode 100644 ngfire/functions/project.json create mode 100644 ngfire/infinite-scroll/project.json create mode 100644 ngfire/multi-lang/project.json create mode 100644 ngfire/nest/project.json create mode 100644 ngfire/state/project.json create mode 100644 ngfire/time/project.json diff --git a/iote/bricks-angular/project.json b/iote/bricks-angular/project.json new file mode 100644 index 0000000..90772c1 --- /dev/null +++ b/iote/bricks-angular/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/bricks-angular", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/bricks-angular" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/iote/bricks-angular/src/index.ts b/iote/bricks-angular/src/index.ts index f845dc6..f23a825 100644 --- a/iote/bricks-angular/src/index.ts +++ b/iote/bricks-angular/src/index.ts @@ -16,16 +16,16 @@ export * from './lib/material-bricks/components/breadcrumbs/bread-crumb-data.int export * from './lib/material-bricks/components/breadcrumbs/breadcrumbs.component'; export * from './lib/material-bricks/components/data-table/data-table.component'; export * from './lib/material-bricks/components/frame/frame.component'; -export * from './lib/material-bricks/components/highlight-section/highlight-section.component'; +export * from './lib/material-/components/highlight-section/highlight-section.component'; export * from './lib/material-bricks/components/item-card-row/item-card-row.component'; export * from './lib/material-bricks/components/module-card/module-card.component'; -export * from './lib/material-bricks/components/navbar/navbar.component'; +export * from './lib/material-/components/navbar/navbar.component'; export * from './lib/material-bricks/components/page/page.component'; export * from './lib/material-bricks/components/spinner/spinner.component'; export * from './lib/material-bricks/components/calendar/calendar.component'; export * from './lib/material-bricks/services/dialog.service'; -export * from './lib/material-bricks/services/theming.service'; +export * from './lib/material-/services/theming.service'; export * from './lib/material-bricks/services/toast.service'; export * from './lib/material-design/material-design.module'; diff --git a/iote/bricks/project.json b/iote/bricks/project.json new file mode 100644 index 0000000..a4cb4ec --- /dev/null +++ b/iote/bricks/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/bricks", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/bricks" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/iote/cqrs/project.json b/iote/cqrs/project.json new file mode 100644 index 0000000..49313c3 --- /dev/null +++ b/iote/cqrs/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/cqrs", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/cqrs" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/iote/exceptions/project.json b/iote/exceptions/project.json new file mode 100644 index 0000000..efe2c15 --- /dev/null +++ b/iote/exceptions/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/exceptions", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/exceptions" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/iote/local-persistance/project.json b/iote/local-persistance/project.json new file mode 100644 index 0000000..4dc3d1c --- /dev/null +++ b/iote/local-persistance/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/local-persistance", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/local-persistance" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/iote/state/project.json b/iote/state/project.json new file mode 100644 index 0000000..01aad8c --- /dev/null +++ b/iote/state/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/state", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/state" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/iote/time/project.json b/iote/time/project.json new file mode 100644 index 0000000..0e1de3e --- /dev/null +++ b/iote/time/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/time", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/time" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/iote/ui-workflows/project.json b/iote/ui-workflows/project.json new file mode 100644 index 0000000..81bc533 --- /dev/null +++ b/iote/ui-workflows/project.json @@ -0,0 +1,31 @@ +{ + "name": "iote/ui-workflows", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/iote/ui-workflows" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/ngfire/admin-data/project.json b/ngfire/admin-data/project.json new file mode 100644 index 0000000..79c36d8 --- /dev/null +++ b/ngfire/admin-data/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/admin-data", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/admin-data" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/angular/project.json b/ngfire/angular/project.json new file mode 100644 index 0000000..fe37668 --- /dev/null +++ b/ngfire/angular/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/angular", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/angular" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/ngfire/bots/project.json b/ngfire/bots/project.json new file mode 100644 index 0000000..7de0e6a --- /dev/null +++ b/ngfire/bots/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/bots", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/bots" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/files/project.json b/ngfire/files/project.json new file mode 100644 index 0000000..8c0074b --- /dev/null +++ b/ngfire/files/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/files", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/files" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/ngfire/firestore-qbuilder/project.json b/ngfire/firestore-qbuilder/project.json new file mode 100644 index 0000000..414a4da --- /dev/null +++ b/ngfire/firestore-qbuilder/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/firestore-qbuilder", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/firestore-qbuilder" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} diff --git a/ngfire/functions/project.json b/ngfire/functions/project.json new file mode 100644 index 0000000..e0033cd --- /dev/null +++ b/ngfire/functions/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/functions", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/functions" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/infinite-scroll/project.json b/ngfire/infinite-scroll/project.json new file mode 100644 index 0000000..c541ce7 --- /dev/null +++ b/ngfire/infinite-scroll/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/infinite-scroll", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/infinite-scroll" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/multi-lang/project.json b/ngfire/multi-lang/project.json new file mode 100644 index 0000000..fc96a5d --- /dev/null +++ b/ngfire/multi-lang/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/multi-lang", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/multi-lang" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/nest/project.json b/ngfire/nest/project.json new file mode 100644 index 0000000..82d412b --- /dev/null +++ b/ngfire/nest/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/nest", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/nest" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/state/project.json b/ngfire/state/project.json new file mode 100644 index 0000000..145ad2f --- /dev/null +++ b/ngfire/state/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/state", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/state" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +} \ No newline at end of file diff --git a/ngfire/time/project.json b/ngfire/time/project.json new file mode 100644 index 0000000..200897b --- /dev/null +++ b/ngfire/time/project.json @@ -0,0 +1,31 @@ +{ + "name": "ngfire/time", + "scripts": { + "test": "jest", + "build": "tsc -p tsconfig.lib.json" + }, + "nx": { + "targets": { + "build": { + "outputs": [ + "dist/libs/external/ngfire/time" + ], + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ] + }, + "test": { + "outputs": [], + "dependsOn": [ + { + "target": "build", + "projects": "self" + } + ] + } + } + } +}