diff --git a/reports/activities/CHANGELOG.MD b/reports/activities/CHANGELOG.MD deleted file mode 100644 index 240acc77b..000000000 --- a/reports/activities/CHANGELOG.MD +++ /dev/null @@ -1,12 +0,0 @@ -## Version 0.0.4 - -Add new module concepts to lower bundle size. -Inject process env correctly - -## Version 0.0.3 - -Inject process.env to bundle - -## Version 0.0.2 - -Bump fusion-framework packages diff --git a/reports/activities/README.md b/reports/activities/README.md deleted file mode 100644 index 0b88ebc73..000000000 --- a/reports/activities/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# activities - -Add readme diff --git a/reports/activities/package.json b/reports/activities/package.json deleted file mode 100644 index 3ff216aff..000000000 --- a/reports/activities/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "activities", - "version": "0.0.9", - "main": "/src/main.tsx", - "private": true, - "type": "module", - "scripts": { - "dev": "fusion-framework-cli app dev", - "build": "tsc -b -f", - "pr:deploy": "npx ts-node --esm ../../github-action/src/releasePr.ts release", - "fprd:deploy": "npx ts-node --esm ../../github-action/src/releaseMain.ts release" - }, - "dependencies": { - "@cc-components/powerbi": "workspace:^", - "@cc-components/shared": "workspace:^" - } -} diff --git a/reports/activities/src/main.tsx b/reports/activities/src/main.tsx deleted file mode 100644 index f8eba0390..000000000 --- a/reports/activities/src/main.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { RootAppWrapper, createRender } from '@cc-components/shared'; -import { Report, configure } from '@cc-components/powerbi'; - -const MyApp = () => { - return ( - - - - ); -}; - -export const render = createRender(MyApp, configure); -export default render; diff --git a/reports/activities/tsconfig.app.json b/reports/activities/tsconfig.app.json deleted file mode 100644 index 0f6a45ec7..000000000 --- a/reports/activities/tsconfig.app.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": ".", - "types": ["node"] - }, - "exclude": [ - "jest.config.ts", - "**/*.spec.ts", - "**/*.test.ts", - "**/*.spec.tsx", - "**/*.test.tsx", - "**/*.spec.js", - "**/*.test.js", - "**/*.spec.jsx", - "**/*.test.jsx", - "dist", - "vite.config.ts" - ], - "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] -} diff --git a/reports/activities/tsconfig.json b/reports/activities/tsconfig.json deleted file mode 100644 index 8377cebd0..000000000 --- a/reports/activities/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "jsx": "react-jsx", - "allowJs": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true - }, - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.app.json" - } - ] -} diff --git a/reports/activities/vite.config.ts b/reports/activities/vite.config.ts deleted file mode 100644 index 7aaf6c6bc..000000000 --- a/reports/activities/vite.config.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { defineConfig } from 'vite'; -import EnvironmentPlugin from 'vite-plugin-environment'; - -export default defineConfig({ - plugins: [ - EnvironmentPlugin({ - NODE_ENV: 'production', - }), - ], - appType: 'custom', - build: { - emptyOutDir: true, - lib: { - entry: './src/main.tsx', - fileName: 'app-bundle', - formats: ['es'], - }, - }, -}); diff --git a/reports/ccoverview/CHANGELOG.md b/reports/ccoverview/CHANGELOG.md deleted file mode 100644 index c73b2f18b..000000000 --- a/reports/ccoverview/CHANGELOG.md +++ /dev/null @@ -1,12 +0,0 @@ -## Version 0.0.5 - -Add new module concepts to lower bundle size. -Inject process env correctly - -## Version 0.0.4 - -Inject process.env to bundle - -## Version 0.0.3 - -Bump fusion-framework packages diff --git a/reports/ccoverview/README.md b/reports/ccoverview/README.md deleted file mode 100644 index 08c4c83c3..000000000 --- a/reports/ccoverview/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ccoverview - -Add readme diff --git a/reports/ccoverview/package.json b/reports/ccoverview/package.json deleted file mode 100644 index ec5f4286e..000000000 --- a/reports/ccoverview/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "ccoverview", - "displayName": "CC overview", - "shortName": "ccoverview", - "version": "0.0.8", - "main": "/src/main.tsx", - "private": true, - "type": "module", - "scripts": { - "dev": "fusion-framework-cli app dev", - "build": "tsc -b -f", - "pr:deploy": "npx ts-node --esm ../../github-action/src/releasePr.ts release", - "fprd:deploy": "npx ts-node --esm ../../github-action/src/releaseMain.ts release" - }, - "dependencies": { - "@cc-components/powerbi": "workspace:^", - "@cc-components/shared": "workspace:^" - }, - "files": [ - "dist/app-bundle.js", - "app-manifest.json" - ] -} diff --git a/reports/ccoverview/src/main.tsx b/reports/ccoverview/src/main.tsx deleted file mode 100644 index c70609b93..000000000 --- a/reports/ccoverview/src/main.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { RootAppWrapper, createRender } from '@cc-components/shared'; -import { Report, configure } from '@cc-components/powerbi'; - -const CCOverview = () => { - return ( - - - - ); -}; - -export const render = createRender(CCOverview, configure); -export default render; diff --git a/reports/ccoverview/tsconfig.app.json b/reports/ccoverview/tsconfig.app.json deleted file mode 100644 index 702b08d90..000000000 --- a/reports/ccoverview/tsconfig.app.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "./dist", - "types": ["node"], - "rootDir": "." - }, - "exclude": [ - "jest.config.ts", - "**/*.spec.ts", - "**/*.test.ts", - "**/*.spec.tsx", - "**/*.test.tsx", - "**/*.spec.js", - "**/*.test.js", - "**/*.spec.jsx", - "**/*.test.jsx", - "dist", - "vite.config.ts" - ], - "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] -} diff --git a/reports/ccoverview/tsconfig.json b/reports/ccoverview/tsconfig.json deleted file mode 100644 index 8377cebd0..000000000 --- a/reports/ccoverview/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "jsx": "react-jsx", - "allowJs": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true - }, - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.app.json" - } - ] -} diff --git a/reports/ccoverview/vite.config.ts b/reports/ccoverview/vite.config.ts deleted file mode 100644 index 7aaf6c6bc..000000000 --- a/reports/ccoverview/vite.config.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { defineConfig } from 'vite'; -import EnvironmentPlugin from 'vite-plugin-environment'; - -export default defineConfig({ - plugins: [ - EnvironmentPlugin({ - NODE_ENV: 'production', - }), - ], - appType: 'custom', - build: { - emptyOutDir: true, - lib: { - entry: './src/main.tsx', - fileName: 'app-bundle', - formats: ['es'], - }, - }, -}); diff --git a/reports/checklist/CHANGELOG.md b/reports/checklist/CHANGELOG.md deleted file mode 100644 index c73b2f18b..000000000 --- a/reports/checklist/CHANGELOG.md +++ /dev/null @@ -1,12 +0,0 @@ -## Version 0.0.5 - -Add new module concepts to lower bundle size. -Inject process env correctly - -## Version 0.0.4 - -Inject process.env to bundle - -## Version 0.0.3 - -Bump fusion-framework packages diff --git a/reports/checklist/README.md b/reports/checklist/README.md deleted file mode 100644 index 0ba506ed7..000000000 --- a/reports/checklist/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# checklist - -Add readme diff --git a/reports/checklist/package.json b/reports/checklist/package.json deleted file mode 100644 index ff12935d9..000000000 --- a/reports/checklist/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "checklist", - "version": "0.0.9", - "main": "/src/main.tsx", - "private": true, - "type": "module", - "scripts": { - "dev": "fusion-framework-cli app dev", - "build": "tsc -b -f", - "pr:deploy": "npx ts-node --esm ../../github-action/src/releasePr.ts release", - "fprd:deploy": "npx ts-node --esm ../../github-action/src/releaseMain.ts release" - }, - "dependencies": { - "@cc-components/powerbi": "workspace:^", - "@cc-components/shared": "workspace:^" - }, - "files": [ - "dist/app-bundle.js", - "app-manifest.json" - ] -} diff --git a/reports/checklist/src/main.tsx b/reports/checklist/src/main.tsx deleted file mode 100644 index 4281fc6ef..000000000 --- a/reports/checklist/src/main.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { RootAppWrapper, createRender } from '@cc-components/shared'; -import Report, { configure } from '@cc-components/powerbi'; - -const Checklist = () => { - return ( - - - - ); -}; - -export const render = createRender(Checklist, configure); -export default render; diff --git a/reports/checklist/tsconfig.app.json b/reports/checklist/tsconfig.app.json deleted file mode 100644 index 702b08d90..000000000 --- a/reports/checklist/tsconfig.app.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "./dist", - "types": ["node"], - "rootDir": "." - }, - "exclude": [ - "jest.config.ts", - "**/*.spec.ts", - "**/*.test.ts", - "**/*.spec.tsx", - "**/*.test.tsx", - "**/*.spec.js", - "**/*.test.js", - "**/*.spec.jsx", - "**/*.test.jsx", - "dist", - "vite.config.ts" - ], - "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] -} diff --git a/reports/checklist/tsconfig.json b/reports/checklist/tsconfig.json deleted file mode 100644 index 8377cebd0..000000000 --- a/reports/checklist/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "jsx": "react-jsx", - "allowJs": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true - }, - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.app.json" - } - ] -} diff --git a/reports/checklist/vite.config.ts b/reports/checklist/vite.config.ts deleted file mode 100644 index 7aaf6c6bc..000000000 --- a/reports/checklist/vite.config.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { defineConfig } from 'vite'; -import EnvironmentPlugin from 'vite-plugin-environment'; - -export default defineConfig({ - plugins: [ - EnvironmentPlugin({ - NODE_ENV: 'production', - }), - ], - appType: 'custom', - build: { - emptyOutDir: true, - lib: { - entry: './src/main.tsx', - fileName: 'app-bundle', - formats: ['es'], - }, - }, -}); diff --git a/reports/commissioningtask/CHANGELOG.md b/reports/commissioningtask/CHANGELOG.md deleted file mode 100644 index c73b2f18b..000000000 --- a/reports/commissioningtask/CHANGELOG.md +++ /dev/null @@ -1,12 +0,0 @@ -## Version 0.0.5 - -Add new module concepts to lower bundle size. -Inject process env correctly - -## Version 0.0.4 - -Inject process.env to bundle - -## Version 0.0.3 - -Bump fusion-framework packages diff --git a/reports/commissioningtask/README.md b/reports/commissioningtask/README.md deleted file mode 100644 index cfed041fd..000000000 --- a/reports/commissioningtask/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# commissioningtask - -Add readme diff --git a/reports/commissioningtask/package.json b/reports/commissioningtask/package.json deleted file mode 100644 index e35b908f7..000000000 --- a/reports/commissioningtask/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "commissioning-task", - "displayName": "Commissioning task", - "shortName": "commissioning-task", - "version": "0.0.8", - "main": "/src/main.tsx", - "private": true, - "type": "module", - "scripts": { - "dev": "fusion-framework-cli app dev", - "build": "tsc -b -f", - "pr:deploy": "npx ts-node --esm ../../github-action/src/releasePr.ts release", - "fprd:deploy": "npx ts-node --esm ../../github-action/src/releaseMain.ts release" - }, - "dependencies": { - "@cc-components/powerbi": "workspace:^", - "@cc-components/shared": "workspace:^" - }, - "files": [ - "dist/app-bundle.js", - "app-manifest.json" - ] -} diff --git a/reports/commissioningtask/src/main.tsx b/reports/commissioningtask/src/main.tsx deleted file mode 100644 index 65763a351..000000000 --- a/reports/commissioningtask/src/main.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { RootAppWrapper, createRender } from '@cc-components/shared'; -import { Report, configure } from '@cc-components/powerbi'; - -const MyApp = () => { - return ( - - - - ); -}; - -export const render = createRender(MyApp, configure); -export default render; diff --git a/reports/commissioningtask/tsconfig.app.json b/reports/commissioningtask/tsconfig.app.json deleted file mode 100644 index 0f6a45ec7..000000000 --- a/reports/commissioningtask/tsconfig.app.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": ".", - "types": ["node"] - }, - "exclude": [ - "jest.config.ts", - "**/*.spec.ts", - "**/*.test.ts", - "**/*.spec.tsx", - "**/*.test.tsx", - "**/*.spec.js", - "**/*.test.js", - "**/*.spec.jsx", - "**/*.test.jsx", - "dist", - "vite.config.ts" - ], - "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] -} diff --git a/reports/commissioningtask/tsconfig.json b/reports/commissioningtask/tsconfig.json deleted file mode 100644 index 8377cebd0..000000000 --- a/reports/commissioningtask/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "jsx": "react-jsx", - "allowJs": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true - }, - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.app.json" - } - ] -} diff --git a/reports/commissioningtask/vite.config.ts b/reports/commissioningtask/vite.config.ts deleted file mode 100644 index 7aaf6c6bc..000000000 --- a/reports/commissioningtask/vite.config.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { defineConfig } from 'vite'; -import EnvironmentPlugin from 'vite-plugin-environment'; - -export default defineConfig({ - plugins: [ - EnvironmentPlugin({ - NODE_ENV: 'production', - }), - ], - appType: 'custom', - build: { - emptyOutDir: true, - lib: { - entry: './src/main.tsx', - fileName: 'app-bundle', - formats: ['es'], - }, - }, -});