refactor: move libs
@@ -5,7 +5,7 @@
|
||||
### Run Application
|
||||
|
||||
```bash
|
||||
npx nx serve rxjs-pipe-bug
|
||||
npx nx serve rxjs-high-order-operator-bug
|
||||
```
|
||||
|
||||
### Documentation and Instruction
|
||||
@@ -1,25 +1,25 @@
|
||||
{
|
||||
"name": "rxjs-pipe-bug",
|
||||
"name": "rxjs-high-order-operator-bug",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/rxjs/pipe-bug/src",
|
||||
"sourceRoot": "apps/rxjs/11-high-order-operator-bug/src",
|
||||
"prefix": "app",
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/rxjs/pipe-bug",
|
||||
"index": "apps/rxjs/pipe-bug/src/index.html",
|
||||
"main": "apps/rxjs/pipe-bug/src/main.ts",
|
||||
"outputPath": "dist/apps/rxjs/11-high-order-operator-bug",
|
||||
"index": "apps/rxjs/11-high-order-operator-bug/src/index.html",
|
||||
"main": "apps/rxjs/11-high-order-operator-bug/src/main.ts",
|
||||
"polyfills": ["zone.js"],
|
||||
"tsConfig": "apps/rxjs/pipe-bug/tsconfig.app.json",
|
||||
"tsConfig": "apps/rxjs/11-high-order-operator-bug/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"apps/rxjs/pipe-bug/src/favicon.ico",
|
||||
"apps/rxjs/pipe-bug/src/assets"
|
||||
"apps/rxjs/11-high-order-operator-bug/src/favicon.ico",
|
||||
"apps/rxjs/11-high-order-operator-bug/src/assets"
|
||||
],
|
||||
"styles": ["apps/rxjs/pipe-bug/src/styles.scss"],
|
||||
"styles": ["apps/rxjs/11-high-order-operator-bug/src/styles.scss"],
|
||||
"scripts": [],
|
||||
"allowedCommonJsDependencies": ["seedrandom"]
|
||||
},
|
||||
@@ -54,10 +54,10 @@
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"buildTarget": "rxjs-pipe-bug:build:production"
|
||||
"buildTarget": "rxjs-high-order-operator-bug:build:production"
|
||||
},
|
||||
"development": {
|
||||
"buildTarget": "rxjs-pipe-bug:build:development"
|
||||
"buildTarget": "rxjs-high-order-operator-bug:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
@@ -65,7 +65,7 @@
|
||||
"extract-i18n": {
|
||||
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"buildTarget": "rxjs-pipe-bug:build"
|
||||
"buildTarget": "rxjs-high-order-operator-bug:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -4,7 +4,7 @@ export default {
|
||||
preset: '../../../jest.preset.js',
|
||||
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
||||
globals: {},
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/race-condition',
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/14-race-condition',
|
||||
transform: {
|
||||
'^.+\\.(ts|mjs|js|html)$': [
|
||||
'jest-preset-angular',
|
||||
@@ -2,24 +2,24 @@
|
||||
"name": "rxjs-race-condition",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/rxjs/race-condition/src",
|
||||
"sourceRoot": "apps/rxjs/14-race-condition/src",
|
||||
"prefix": "app",
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/rxjs/race-condition",
|
||||
"index": "apps/rxjs/race-condition/src/index.html",
|
||||
"main": "apps/rxjs/race-condition/src/main.ts",
|
||||
"outputPath": "dist/apps/rxjs/14-race-condition",
|
||||
"index": "apps/rxjs/14-race-condition/src/index.html",
|
||||
"main": "apps/rxjs/14-race-condition/src/main.ts",
|
||||
"polyfills": ["zone.js"],
|
||||
"tsConfig": "apps/rxjs/race-condition/tsconfig.app.json",
|
||||
"tsConfig": "apps/rxjs/14-race-condition/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"apps/rxjs/race-condition/src/favicon.ico",
|
||||
"apps/rxjs/race-condition/src/assets"
|
||||
"apps/rxjs/14-race-condition/src/favicon.ico",
|
||||
"apps/rxjs/14-race-condition/src/assets"
|
||||
],
|
||||
"styles": ["apps/rxjs/race-condition/src/styles.scss"],
|
||||
"styles": ["apps/rxjs/14-race-condition/src/styles.scss"],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
@@ -74,13 +74,13 @@
|
||||
"executor": "@nx/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"options": {
|
||||
"jestConfig": "apps/rxjs/race-condition/jest.config.ts"
|
||||
"jestConfig": "apps/rxjs/14-race-condition/jest.config.ts"
|
||||
}
|
||||
},
|
||||
"component-test": {
|
||||
"executor": "@nx/cypress:cypress",
|
||||
"options": {
|
||||
"cypressConfig": "apps/rxjs/race-condition/cypress.config.ts",
|
||||
"cypressConfig": "apps/rxjs/14-race-condition/cypress.config.ts",
|
||||
"testingType": "component",
|
||||
"skipServe": true,
|
||||
"devServerTarget": "rxjs-race-condition:build"
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -22,7 +22,7 @@
|
||||
"path": "./tsconfig.editor.json"
|
||||
},
|
||||
{
|
||||
"path": "./cypress/tsconfig.json"
|
||||
"path": "./cypress/tsconfig.base.json"
|
||||
}
|
||||
],
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
@@ -3,7 +3,7 @@ export default {
|
||||
displayName: 'rxjs-catch-error',
|
||||
preset: '../../../jest.preset.js',
|
||||
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/catch-error',
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/38-catch-error',
|
||||
transform: {
|
||||
'^.+\\.(ts|mjs|js|html)$': [
|
||||
'jest-preset-angular',
|
||||
@@ -3,23 +3,23 @@
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"prefix": "app",
|
||||
"sourceRoot": "apps/rxjs/catch-error/src",
|
||||
"sourceRoot": "apps/rxjs/38-catch-error/src",
|
||||
"tags": [],
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/rxjs/catch-error",
|
||||
"index": "apps/rxjs/catch-error/src/index.html",
|
||||
"main": "apps/rxjs/catch-error/src/main.ts",
|
||||
"outputPath": "dist/apps/rxjs/38-catch-error",
|
||||
"index": "apps/rxjs/38-catch-error/src/index.html",
|
||||
"main": "apps/rxjs/38-catch-error/src/main.ts",
|
||||
"polyfills": ["zone.js"],
|
||||
"tsConfig": "apps/rxjs/catch-error/tsconfig.app.json",
|
||||
"tsConfig": "apps/rxjs/38-catch-error/tsconfig.app.json",
|
||||
"assets": [
|
||||
"apps/rxjs/catch-error/src/favicon.ico",
|
||||
"apps/rxjs/catch-error/src/assets"
|
||||
"apps/rxjs/38-catch-error/src/favicon.ico",
|
||||
"apps/rxjs/38-catch-error/src/assets"
|
||||
],
|
||||
"styles": ["apps/rxjs/catch-error/src/styles.scss"],
|
||||
"styles": ["apps/rxjs/38-catch-error/src/styles.scss"],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
@@ -74,7 +74,7 @@
|
||||
"executor": "@nx/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"options": {
|
||||
"jestConfig": "apps/rxjs/catch-error/jest.config.ts"
|
||||
"jestConfig": "apps/rxjs/38-catch-error/jest.config.ts"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -5,7 +5,7 @@
|
||||
### Run Application
|
||||
|
||||
```bash
|
||||
npx nx serve rxjs-hold-to-save-btn
|
||||
npx nx serve rxjs-hold-to-save-button
|
||||
```
|
||||
|
||||
### Documentation and Instruction
|
||||
@@ -1,9 +1,9 @@
|
||||
/* eslint-disable */
|
||||
export default {
|
||||
displayName: 'rxjs-hold-to-save-btn',
|
||||
displayName: 'rxjs-hold-to-save-button',
|
||||
preset: '../../../jest.preset.js',
|
||||
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/hold-to-save-btn',
|
||||
coverageDirectory: '../../../coverage/apps/rxjs/49-hold-to-save-button',
|
||||
transform: {
|
||||
'^.+\\.(ts|mjs|js|html)$': [
|
||||
'jest-preset-angular',
|
||||
@@ -1,26 +1,26 @@
|
||||
{
|
||||
"name": "rxjs-hold-to-save-btn",
|
||||
"name": "rxjs-hold-to-save-button",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"prefix": "app",
|
||||
"sourceRoot": "apps/rxjs/hold-to-save-btn/src",
|
||||
"sourceRoot": "apps/rxjs/49-hold-to-save-button/src",
|
||||
"tags": [],
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:application",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/rxjs/hold-to-save-btn",
|
||||
"index": "apps/rxjs/hold-to-save-btn/src/index.html",
|
||||
"browser": "apps/rxjs/hold-to-save-btn/src/main.ts",
|
||||
"outputPath": "dist/apps/rxjs/49-hold-to-save-button",
|
||||
"index": "apps/rxjs/49-hold-to-save-button/src/index.html",
|
||||
"browser": "apps/rxjs/49-hold-to-save-button/src/main.ts",
|
||||
"polyfills": ["zone.js"],
|
||||
"tsConfig": "apps/rxjs/hold-to-save-btn/tsconfig.app.json",
|
||||
"tsConfig": "apps/rxjs/49-hold-to-save-button/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"apps/rxjs/hold-to-save-btn/src/favicon.ico",
|
||||
"apps/rxjs/hold-to-save-btn/src/assets"
|
||||
"apps/rxjs/49-hold-to-save-button/src/favicon.ico",
|
||||
"apps/rxjs/49-hold-to-save-button/src/assets"
|
||||
],
|
||||
"styles": ["apps/rxjs/hold-to-save-btn/src/styles.scss"],
|
||||
"styles": ["apps/rxjs/49-hold-to-save-button/src/styles.scss"],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
@@ -51,10 +51,10 @@
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"buildTarget": "rxjs-hold-to-save-btn:build:production"
|
||||
"buildTarget": "rxjs-hold-to-save-button:build:production"
|
||||
},
|
||||
"development": {
|
||||
"buildTarget": "rxjs-hold-to-save-btn:build:development"
|
||||
"buildTarget": "rxjs-hold-to-save-button:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
@@ -62,7 +62,7 @@
|
||||
"extract-i18n": {
|
||||
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"buildTarget": "rxjs-hold-to-save-btn:build"
|
||||
"buildTarget": "rxjs-hold-to-save-button:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
@@ -72,7 +72,7 @@
|
||||
"executor": "@nx/jest:jest",
|
||||
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
||||
"options": {
|
||||
"jestConfig": "apps/rxjs/hold-to-save-btn/jest.config.ts"
|
||||
"jestConfig": "apps/rxjs/49-hold-to-save-button/jest.config.ts"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |