mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 07:19:50 -04:00

-- * Strongs rendering was happening for words that didn't have numbers. * Fix a number of issues caught by linting (lack of types, some casing issues that would have caused bugs) * Remove memory leaks from not cleaning up subscriptions * Fixed bug in Add Card to Saved Page dialog Enhancements -- * Button to clear all cards from current menu * Clear reported errors after 25 seconds so they don't stay on the screen forever. * Show multiple Strong's numbers in tabs instead of multiple dialogs on top of each other. * Make all the dialog titles consistent. Code Health -- * Implement better linting * Sort imports * Optimize regex * Remove unused imports/vars * Upgrade app service to a better style * Removed deprecated function calls * Removed redux, just use an RXJS observable * Removed old dependency from package.json that was no longer used and deprecated
184 lines
5.0 KiB
JSON
184 lines
5.0 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"dynamicbible": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "",
|
|
"sourceRoot": "src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:application",
|
|
"options": {
|
|
"outputPath": "dist/dynamicbible",
|
|
"index": "src/index.html",
|
|
"polyfills": [
|
|
"src/polyfills.ts"
|
|
],
|
|
"tsConfig": "tsconfig.app.json",
|
|
"assets": [
|
|
"src/favicon.ico",
|
|
"src/assets"
|
|
],
|
|
"styles": [
|
|
"src/styles.scss"
|
|
],
|
|
"scripts": [
|
|
"node_modules/marked/marked.min.js"
|
|
],
|
|
"stylePreprocessorOptions": {
|
|
"includePaths": [
|
|
"node_modules/"
|
|
]
|
|
},
|
|
"allowedCommonJsDependencies": [
|
|
"firebase",
|
|
"@firebase/app",
|
|
"@firebase/auth",
|
|
"@firebase/database",
|
|
"@firebase/util",
|
|
"@firebase/component"
|
|
],
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"optimization": false,
|
|
"namedChunks": true,
|
|
"browser": "src/main.ts"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "src/environments/environment.ts",
|
|
"with": "src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"optimization": true,
|
|
"outputHashing": "all",
|
|
"sourceMap": false,
|
|
"namedChunks": false,
|
|
"extractLicenses": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "6kb",
|
|
"maximumError": "10kb"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"defaultConfiguration": ""
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"options": {
|
|
"buildTarget": "dynamicbible:build"
|
|
},
|
|
"configurations": {
|
|
"production": {}
|
|
}
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {}
|
|
},
|
|
"test": {
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"main": "src/test.ts",
|
|
"polyfills": "src/polyfills.ts",
|
|
"tsConfig": "tsconfig.spec.json",
|
|
"karmaConfig": "karma.conf.js",
|
|
"assets": [
|
|
"src/favicon.ico",
|
|
"src/assets"
|
|
],
|
|
"styles": [
|
|
"src/styles.scss"
|
|
],
|
|
"scripts": []
|
|
}
|
|
},
|
|
"e2e": {
|
|
"builder": "@cypress/schematic:cypress",
|
|
"options": {
|
|
"devServerTarget": "dynamicbible:serve",
|
|
"watch": true,
|
|
"headless": false
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "dynamicbible:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"deploy": {
|
|
"builder": "@angular/fire:deploy",
|
|
"options": {}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"src/**/*.ts",
|
|
"src/**/*.html"
|
|
]
|
|
}
|
|
},
|
|
"cypress-run": {
|
|
"builder": "@cypress/schematic:cypress",
|
|
"options": {
|
|
"devServerTarget": "dynamicbible:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "dynamicbible:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"cypress-open": {
|
|
"builder": "@cypress/schematic:cypress",
|
|
"options": {
|
|
"watch": true,
|
|
"headless": false
|
|
}
|
|
},
|
|
"ct": {
|
|
"builder": "@cypress/schematic:cypress",
|
|
"options": {
|
|
"devServerTarget": "dynamicbible:serve",
|
|
"watch": true,
|
|
"headless": false,
|
|
"testingType": "component"
|
|
},
|
|
"configurations": {
|
|
"development": {
|
|
"devServerTarget": "dynamicbible:serve:development"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"analytics": false,
|
|
"schematicCollections": [
|
|
"@cypress/schematic",
|
|
"@angular-eslint/schematics",
|
|
"@schematics/angular"
|
|
]
|
|
}
|
|
}
|