├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── apployees-nx.iml ├── apps ├── .gitkeep ├── examples │ ├── import-types │ │ ├── .eslintrc │ │ ├── envs │ │ │ ├── .env.any │ │ │ ├── .env.development │ │ │ ├── .env.local.any │ │ │ ├── .env.local.development │ │ │ ├── .env.local.production │ │ │ ├── .env.local.test │ │ │ ├── .env.production │ │ │ ├── .env.test │ │ │ └── .gitignoreX │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ └── .gitkeep │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── main.ts │ │ │ └── node-env.d.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ └── webserver │ │ ├── .eslintrc │ │ ├── antd-icons.js │ │ ├── antd-theme.less │ │ ├── envs │ │ ├── .env.any │ │ ├── .env.development │ │ ├── .env.local.any │ │ ├── .env.local.development │ │ ├── .env.local.production │ │ ├── .env.local.test │ │ ├── .env.production │ │ ├── .env.test │ │ └── .gitignoreX │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── App.spec.tsx │ │ │ ├── App.tsx │ │ │ ├── logo.svg │ │ │ ├── styles │ │ │ │ ├── AppCss.css │ │ │ │ ├── AppCss.module.css │ │ │ │ ├── AppLess.less │ │ │ │ ├── AppLess.module.less │ │ │ │ ├── AppSass.module.sass │ │ │ │ └── AppSass.sass │ │ │ ├── web.worker.ts │ │ │ └── webWorker.ts │ │ ├── client │ │ │ ├── anotherClientEntry.ts │ │ │ ├── clientOnly.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ └── serviceWorker.ts │ │ ├── env.d.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.ts │ │ ├── public │ │ │ ├── app.html │ │ │ ├── favicon.ico │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── server │ │ │ ├── createCertificateAndKeys.ts │ │ │ ├── getCertificate.ts │ │ │ ├── index.ts │ │ │ ├── middleware │ │ │ ├── cors.ts │ │ │ ├── html.ts │ │ │ └── render.tsx │ │ │ └── serverEnvs.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── webpack.client.overrides.js ├── level-task-runner │ ├── .eslintrc │ ├── envs │ │ ├── .env.any │ │ ├── .env.development │ │ ├── .env.local.any │ │ ├── .env.local.development │ │ ├── .env.local.production │ │ ├── .env.local.test │ │ ├── .env.production │ │ ├── .env.test │ │ └── .gitignore_README │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── LevelCache.ts │ │ ├── README.md │ │ ├── app │ │ │ └── .gitkeep │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.ts │ │ ├── main.ts │ │ └── node-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── node │ ├── .eslintrc │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── builders.json │ │ ├── builders │ │ │ ├── build │ │ │ │ ├── build.impl.ts │ │ │ │ └── schema.json │ │ │ └── execute │ │ │ │ ├── execute.impl.ts │ │ │ │ └── schema.json │ │ ├── collection.json │ │ ├── main.ts │ │ ├── migrations.json │ │ ├── schematics │ │ │ ├── application │ │ │ │ ├── application.ts │ │ │ │ ├── files │ │ │ │ │ └── app │ │ │ │ │ │ ├── envs │ │ │ │ │ │ ├── .env.any │ │ │ │ │ │ ├── .env.development │ │ │ │ │ │ ├── .env.local.any │ │ │ │ │ │ ├── .env.local.development │ │ │ │ │ │ ├── .env.local.production │ │ │ │ │ │ ├── .env.local.test │ │ │ │ │ │ ├── .env.production │ │ │ │ │ │ ├── .env.test │ │ │ │ │ │ └── .gitignore_README │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── environments │ │ │ │ │ │ │ ├── environment.prod.ts__tmpl__ │ │ │ │ │ │ │ └── environment.ts__tmpl__ │ │ │ │ │ │ ├── main.ts__tmpl__ │ │ │ │ │ │ ├── node-env.d.ts │ │ │ │ │ │ └── some.spec.ts__tmpl__ │ │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ └── init │ │ │ │ ├── init.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── builders.json │ │ │ ├── collection.json │ │ │ ├── migrations.json │ │ │ └── package.json │ │ │ ├── config.ts │ │ │ ├── node-plugins.ts │ │ │ ├── node-test-runner.ts │ │ │ ├── node-types.ts │ │ │ ├── node.config.ts │ │ │ └── normalize.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── webserver │ ├── .eslintrc │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── builders.json │ ├── builders │ │ └── build │ │ │ ├── build.impl.ts │ │ │ └── schema.json │ ├── collection.json │ ├── main.ts │ ├── migrations.json │ ├── schematics │ │ ├── application │ │ │ ├── application.ts │ │ │ ├── files │ │ │ │ └── app │ │ │ │ │ ├── antd-icons.js │ │ │ │ │ ├── antd-theme.less │ │ │ │ │ ├── envs │ │ │ │ │ ├── .env.any │ │ │ │ │ ├── .env.development │ │ │ │ │ ├── .env.local.any │ │ │ │ │ ├── .env.local.development │ │ │ │ │ ├── .env.local.production │ │ │ │ │ ├── .env.local.test │ │ │ │ │ ├── .env.production__tmpl__ │ │ │ │ │ ├── .env.test │ │ │ │ │ └── .gitignore_README │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── App.spec.tsx__tmpl__ │ │ │ │ │ │ ├── App.tsx__tmpl__ │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ ├── styles │ │ │ │ │ │ │ ├── AppCss.css │ │ │ │ │ │ │ ├── AppCss.module.css │ │ │ │ │ │ │ ├── AppLess.less │ │ │ │ │ │ │ ├── AppLess.module.less │ │ │ │ │ │ │ ├── AppSass.module.sass │ │ │ │ │ │ │ └── AppSass.sass │ │ │ │ │ │ ├── web.worker.ts__tmpl__ │ │ │ │ │ │ ├── webWorker.ts__tmpl__ │ │ │ │ │ │ └── webWorkerProcessor.ts__tmpl__ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── anotherClientEntry.ts__tmpl__ │ │ │ │ │ │ ├── clientOnly.tsx__tmpl__ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ ├── index.tsx__tmpl__ │ │ │ │ │ │ └── serviceWorker.ts__tmpl__ │ │ │ │ │ ├── env.d.ts__tmpl__ │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── environment.prod.ts__tmpl__ │ │ │ │ │ │ └── environment.ts__tmpl__ │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── public │ │ │ │ │ │ ├── app.html__tmpl__ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── logo192.png │ │ │ │ │ │ ├── logo512.png │ │ │ │ │ │ ├── manifest.json__tmpl__ │ │ │ │ │ │ └── robots.txt__tmpl__ │ │ │ │ │ └── server │ │ │ │ │ │ ├── createCertificateAndKeys.ts__tmpl__ │ │ │ │ │ │ ├── getCertificate.ts__tmpl__ │ │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── cors.ts__tmpl__ │ │ │ │ │ │ ├── html.ts__tmpl__ │ │ │ │ │ │ └── render.tsx__tmpl__ │ │ │ │ │ │ └── serverEnvs.ts__tmpl__ │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ └── webpack.client.overrides.js │ │ │ ├── schema.d.ts │ │ │ ├── schema.json │ │ │ └── workspace-files │ │ │ │ └── config │ │ │ │ └── jest │ │ │ │ ├── cssTransform.js │ │ │ │ └── fileTransform.js │ │ └── init │ │ │ ├── init.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ └── utils │ │ ├── client │ │ ├── WebpackDevServerUtils.ts │ │ ├── client-config.ts │ │ ├── client-loaders.ts │ │ └── webpackHotDevClient.js │ │ ├── common │ │ ├── __tests__ │ │ │ ├── builders.json │ │ │ ├── collection.json │ │ │ ├── migrations.json │ │ │ └── package.json │ │ ├── common-config.ts │ │ ├── common-loaders.ts │ │ ├── env.ts │ │ ├── hash-format.ts │ │ ├── import-transformer-options.ts │ │ ├── import-transformer.ts │ │ ├── normalize.ts │ │ ├── plugins.ts │ │ ├── webserver-test-runner.ts │ │ └── webserver-types.ts │ │ └── server │ │ ├── server-config.ts │ │ └── server-loaders.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── devdocs └── babel-dependencies-to-add-in-future.md ├── jest.config.js ├── libs ├── .gitkeep ├── common-build-utils │ ├── .eslintrc │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── builder │ │ │ ├── common-env-utils.ts │ │ │ ├── common-plugins.ts │ │ │ ├── normalize.ts │ │ │ └── sources.ts │ │ │ ├── generate-package-json │ │ │ ├── all-deps-calculator.ts │ │ │ └── write-package-json.ts │ │ │ ├── node-externals │ │ │ ├── externalized-imports.ts │ │ │ └── node-externals.ts │ │ │ ├── schematics │ │ │ └── compatible-nx-version.ts │ │ │ └── types │ │ │ └── common-types.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── examples │ ├── library1 │ ├── .eslintrc │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── examples-library1.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ └── library2 │ ├── .eslintrc │ ├── README.md │ ├── jest.config.js │ ├── src │ ├── index.ts │ └── lib │ │ └── examples-library2.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.json ├── workspace.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.13.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/README.md -------------------------------------------------------------------------------- /apployees-nx.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apployees-nx.iml -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/examples/import-types/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/.eslintrc -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.any -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.development -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.local.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.local.any -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.local.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.local.development -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.local.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.local.production -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.local.test -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.production -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/envs/.env.test -------------------------------------------------------------------------------- /apps/examples/import-types/envs/.gitignoreX: -------------------------------------------------------------------------------- 1 | .env.local.* 2 | -------------------------------------------------------------------------------- /apps/examples/import-types/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/jest.config.js -------------------------------------------------------------------------------- /apps/examples/import-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/package.json -------------------------------------------------------------------------------- /apps/examples/import-types/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/examples/import-types/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/examples/import-types/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/examples/import-types/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/examples/import-types/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/src/main.ts -------------------------------------------------------------------------------- /apps/examples/import-types/src/node-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/src/node-env.d.ts -------------------------------------------------------------------------------- /apps/examples/import-types/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/tsconfig.app.json -------------------------------------------------------------------------------- /apps/examples/import-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/import-types/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/import-types/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/examples/webserver/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/.eslintrc -------------------------------------------------------------------------------- /apps/examples/webserver/antd-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/antd-icons.js -------------------------------------------------------------------------------- /apps/examples/webserver/antd-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/antd-theme.less -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.any -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.development -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.local.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.local.any -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.local.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.local.development -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.local.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.local.production -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.local.test -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.production -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/envs/.env.test -------------------------------------------------------------------------------- /apps/examples/webserver/envs/.gitignoreX: -------------------------------------------------------------------------------- 1 | .env.local.* 2 | -------------------------------------------------------------------------------- /apps/examples/webserver/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/jest.config.js -------------------------------------------------------------------------------- /apps/examples/webserver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/package.json -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/App.spec.tsx -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/App.tsx -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/logo.svg -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/styles/AppCss.css -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppCss.module.css: -------------------------------------------------------------------------------- 1 | .app { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppLess.less: -------------------------------------------------------------------------------- 1 | @import "~antd/lib/style/index.less"; 2 | 3 | .Path-Name { 4 | background-color: green; 5 | } 6 | -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppLess.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/styles/AppLess.module.less -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppSass.module.sass: -------------------------------------------------------------------------------- 1 | .library-text 2 | color: red 3 | -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/styles/AppSass.sass: -------------------------------------------------------------------------------- 1 | .App-link 2 | color: #61dafb 3 | -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/web.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/web.worker.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/app/webWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/app/webWorker.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/client/anotherClientEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/client/anotherClientEntry.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/client/clientOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/client/clientOnly.tsx -------------------------------------------------------------------------------- /apps/examples/webserver/src/client/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/client/index.css -------------------------------------------------------------------------------- /apps/examples/webserver/src/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/client/index.tsx -------------------------------------------------------------------------------- /apps/examples/webserver/src/client/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/client/serviceWorker.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/env.d.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/index.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/app.html -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/favicon.ico -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/logo192.png -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/logo512.png -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/manifest.json -------------------------------------------------------------------------------- /apps/examples/webserver/src/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/public/robots.txt -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/createCertificateAndKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/createCertificateAndKeys.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/getCertificate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/getCertificate.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/index.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/middleware/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/middleware/cors.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/middleware/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/middleware/html.ts -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/middleware/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/middleware/render.tsx -------------------------------------------------------------------------------- /apps/examples/webserver/src/server/serverEnvs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/src/server/serverEnvs.ts -------------------------------------------------------------------------------- /apps/examples/webserver/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/tsconfig.app.json -------------------------------------------------------------------------------- /apps/examples/webserver/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/webserver/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/examples/webserver/webpack.client.overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/examples/webserver/webpack.client.overrides.js -------------------------------------------------------------------------------- /apps/level-task-runner/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/.eslintrc -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.any -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.development -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.local.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.local.any -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.local.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.local.development -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.local.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.local.production -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.local.test -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.production -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.env.test -------------------------------------------------------------------------------- /apps/level-task-runner/envs/.gitignore_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/envs/.gitignore_README -------------------------------------------------------------------------------- /apps/level-task-runner/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/jest.config.js -------------------------------------------------------------------------------- /apps/level-task-runner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/package.json -------------------------------------------------------------------------------- /apps/level-task-runner/src/LevelCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/LevelCache.ts -------------------------------------------------------------------------------- /apps/level-task-runner/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/README.md -------------------------------------------------------------------------------- /apps/level-task-runner/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/level-task-runner/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/level-task-runner/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /apps/level-task-runner/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/level-task-runner/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/index.ts -------------------------------------------------------------------------------- /apps/level-task-runner/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/main.ts -------------------------------------------------------------------------------- /apps/level-task-runner/src/node-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/src/node-env.d.ts -------------------------------------------------------------------------------- /apps/level-task-runner/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/tsconfig.app.json -------------------------------------------------------------------------------- /apps/level-task-runner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/tsconfig.json -------------------------------------------------------------------------------- /apps/level-task-runner/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/level-task-runner/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/node/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/.eslintrc -------------------------------------------------------------------------------- /apps/node/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/jest.config.js -------------------------------------------------------------------------------- /apps/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/package.json -------------------------------------------------------------------------------- /apps/node/src/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/builders.json -------------------------------------------------------------------------------- /apps/node/src/builders/build/build.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/builders/build/build.impl.ts -------------------------------------------------------------------------------- /apps/node/src/builders/build/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/builders/build/schema.json -------------------------------------------------------------------------------- /apps/node/src/builders/execute/execute.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/builders/execute/execute.impl.ts -------------------------------------------------------------------------------- /apps/node/src/builders/execute/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/builders/execute/schema.json -------------------------------------------------------------------------------- /apps/node/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/collection.json -------------------------------------------------------------------------------- /apps/node/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/main.ts -------------------------------------------------------------------------------- /apps/node/src/migrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "schematics": {} 3 | } 4 | -------------------------------------------------------------------------------- /apps/node/src/schematics/application/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/application.ts -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.any -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.development -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.local.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.local.any -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.local.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.local.development -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.local.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.local.production -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.local.test -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.production -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.env.test -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/envs/.gitignore_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/envs/.gitignore_README -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/package.json -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/environments/environment.prod.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/src/environments/environment.prod.ts__tmpl__ -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/environments/environment.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/src/environments/environment.ts__tmpl__ -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/main.ts__tmpl__: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); 2 | -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/node-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/src/node-env.d.ts -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/src/some.spec.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/src/some.spec.ts__tmpl__ -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/node/src/schematics/application/files/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/files/app/tsconfig.json -------------------------------------------------------------------------------- /apps/node/src/schematics/application/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/schema.d.ts -------------------------------------------------------------------------------- /apps/node/src/schematics/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/application/schema.json -------------------------------------------------------------------------------- /apps/node/src/schematics/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/init/init.ts -------------------------------------------------------------------------------- /apps/node/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | skipFormat: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /apps/node/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/schematics/init/schema.json -------------------------------------------------------------------------------- /apps/node/src/utils/__tests__/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/__tests__/builders.json -------------------------------------------------------------------------------- /apps/node/src/utils/__tests__/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/__tests__/collection.json -------------------------------------------------------------------------------- /apps/node/src/utils/__tests__/migrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "schematics": {} 3 | } 4 | -------------------------------------------------------------------------------- /apps/node/src/utils/__tests__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/__tests__/package.json -------------------------------------------------------------------------------- /apps/node/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/config.ts -------------------------------------------------------------------------------- /apps/node/src/utils/node-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/node-plugins.ts -------------------------------------------------------------------------------- /apps/node/src/utils/node-test-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/node-test-runner.ts -------------------------------------------------------------------------------- /apps/node/src/utils/node-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/node-types.ts -------------------------------------------------------------------------------- /apps/node/src/utils/node.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/node.config.ts -------------------------------------------------------------------------------- /apps/node/src/utils/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/src/utils/normalize.ts -------------------------------------------------------------------------------- /apps/node/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/tsconfig.app.json -------------------------------------------------------------------------------- /apps/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/tsconfig.json -------------------------------------------------------------------------------- /apps/node/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/node/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/webserver/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/.eslintrc -------------------------------------------------------------------------------- /apps/webserver/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/jest.config.js -------------------------------------------------------------------------------- /apps/webserver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/package.json -------------------------------------------------------------------------------- /apps/webserver/src/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/builders.json -------------------------------------------------------------------------------- /apps/webserver/src/builders/build/build.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/builders/build/build.impl.ts -------------------------------------------------------------------------------- /apps/webserver/src/builders/build/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/builders/build/schema.json -------------------------------------------------------------------------------- /apps/webserver/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/collection.json -------------------------------------------------------------------------------- /apps/webserver/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/main.ts -------------------------------------------------------------------------------- /apps/webserver/src/migrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "schematics": {} 3 | } 4 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/application.ts -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/antd-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/antd-icons.js -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/antd-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/antd-theme.less -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.any -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.development -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.local.any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.local.any -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.local.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.local.development -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.local.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.local.production -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.local.test -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.production__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.production__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.env.test -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/envs/.gitignore_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/envs/.gitignore_README -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/package.json -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/App.spec.tsx__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/App.spec.tsx__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/App.tsx__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/App.tsx__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/logo.svg -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/styles/AppCss.css -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppCss.module.css: -------------------------------------------------------------------------------- 1 | .app { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppLess.less: -------------------------------------------------------------------------------- 1 | @import "~antd/lib/style/index.less"; 2 | 3 | .Path-Name { 4 | background-color: green; 5 | } 6 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppLess.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/styles/AppLess.module.less -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppSass.module.sass: -------------------------------------------------------------------------------- 1 | .library-text 2 | color: red 3 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/styles/AppSass.sass: -------------------------------------------------------------------------------- 1 | .App-link 2 | color: #61dafb 3 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/web.worker.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/web.worker.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/webWorker.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/webWorker.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/app/webWorkerProcessor.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/app/webWorkerProcessor.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/client/anotherClientEntry.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/client/anotherClientEntry.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/client/clientOnly.tsx__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/client/clientOnly.tsx__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/client/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/client/index.css -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/client/index.tsx__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/client/index.tsx__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/client/serviceWorker.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/client/serviceWorker.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/env.d.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/env.d.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/environments/environment.prod.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/environments/environment.prod.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/environments/environment.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/environments/environment.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/index.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/index.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/app.html__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/app.html__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/favicon.ico -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/logo192.png -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/logo512.png -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/manifest.json__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/manifest.json__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/public/robots.txt__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/public/robots.txt__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/createCertificateAndKeys.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/createCertificateAndKeys.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/getCertificate.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/getCertificate.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/index.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/index.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/middleware/cors.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/middleware/cors.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/middleware/html.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/middleware/html.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/middleware/render.tsx__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/middleware/render.tsx__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/src/server/serverEnvs.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/src/server/serverEnvs.ts__tmpl__ -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/tsconfig.json -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/files/app/webpack.client.overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/files/app/webpack.client.overrides.js -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/schema.d.ts -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/schema.json -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/workspace-files/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/workspace-files/config/jest/cssTransform.js -------------------------------------------------------------------------------- /apps/webserver/src/schematics/application/workspace-files/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/application/workspace-files/config/jest/fileTransform.js -------------------------------------------------------------------------------- /apps/webserver/src/schematics/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/init/init.ts -------------------------------------------------------------------------------- /apps/webserver/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | skipFormat: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /apps/webserver/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/schematics/init/schema.json -------------------------------------------------------------------------------- /apps/webserver/src/utils/client/WebpackDevServerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/client/WebpackDevServerUtils.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/client/client-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/client/client-config.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/client/client-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/client/client-loaders.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/client/webpackHotDevClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/client/webpackHotDevClient.js -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/__tests__/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/__tests__/builders.json -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/__tests__/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/__tests__/collection.json -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/__tests__/migrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "schematics": {} 3 | } 4 | -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/__tests__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/__tests__/package.json -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/common-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/common-config.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/common-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/common-loaders.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/env.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/hash-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/hash-format.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/import-transformer-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/import-transformer-options.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/import-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/import-transformer.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/normalize.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/plugins.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/webserver-test-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/webserver-test-runner.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/common/webserver-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/common/webserver-types.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/server/server-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/server/server-config.ts -------------------------------------------------------------------------------- /apps/webserver/src/utils/server/server-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/src/utils/server/server-loaders.ts -------------------------------------------------------------------------------- /apps/webserver/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/tsconfig.app.json -------------------------------------------------------------------------------- /apps/webserver/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/tsconfig.json -------------------------------------------------------------------------------- /apps/webserver/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/apps/webserver/tsconfig.spec.json -------------------------------------------------------------------------------- /devdocs/babel-dependencies-to-add-in-future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/devdocs/babel-dependencies-to-add-in-future.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/common-build-utils/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/.eslintrc -------------------------------------------------------------------------------- /libs/common-build-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/README.md -------------------------------------------------------------------------------- /libs/common-build-utils/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/jest.config.js -------------------------------------------------------------------------------- /libs/common-build-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/index.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/builder/common-env-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/builder/common-env-utils.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/builder/common-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/builder/common-plugins.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/builder/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/builder/normalize.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/builder/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/builder/sources.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/generate-package-json/all-deps-calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/generate-package-json/all-deps-calculator.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/generate-package-json/write-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/generate-package-json/write-package-json.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/node-externals/externalized-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/node-externals/externalized-imports.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/node-externals/node-externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/node-externals/node-externals.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/schematics/compatible-nx-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/schematics/compatible-nx-version.ts -------------------------------------------------------------------------------- /libs/common-build-utils/src/lib/types/common-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/src/lib/types/common-types.ts -------------------------------------------------------------------------------- /libs/common-build-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/tsconfig.json -------------------------------------------------------------------------------- /libs/common-build-utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/common-build-utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/common-build-utils/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/examples/library1/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/.eslintrc -------------------------------------------------------------------------------- /libs/examples/library1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/README.md -------------------------------------------------------------------------------- /libs/examples/library1/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/jest.config.js -------------------------------------------------------------------------------- /libs/examples/library1/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/src/index.ts -------------------------------------------------------------------------------- /libs/examples/library1/src/lib/examples-library1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/src/lib/examples-library1.ts -------------------------------------------------------------------------------- /libs/examples/library1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/tsconfig.json -------------------------------------------------------------------------------- /libs/examples/library1/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/examples/library1/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library1/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/examples/library2/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/.eslintrc -------------------------------------------------------------------------------- /libs/examples/library2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/README.md -------------------------------------------------------------------------------- /libs/examples/library2/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/jest.config.js -------------------------------------------------------------------------------- /libs/examples/library2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/src/index.ts -------------------------------------------------------------------------------- /libs/examples/library2/src/lib/examples-library2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/src/lib/examples-library2.ts -------------------------------------------------------------------------------- /libs/examples/library2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/tsconfig.json -------------------------------------------------------------------------------- /libs/examples/library2/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/examples/library2/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/libs/examples/library2/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/package.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/workspace.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apployees/apployees-nx/HEAD/yarn.lock --------------------------------------------------------------------------------