Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging so we can all get a fresh fork from BananoCoin/BananoNault #38

Merged
merged 16 commits into from Jul 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
File renamed without changes.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -21,6 +21,7 @@
*.sublime-workspace

# IDE - VSCode
*.vs/*
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
Expand Down
3 changes: 3 additions & 0 deletions angular-tools.md
Expand Up @@ -5,5 +5,8 @@ An open source tool for building enterprise angular components, directives, and
Bit is a scalable and collaborative way to build and reuse components. It's everything you need from local development to cross-project integrations.
## [ngrev](https://github.com/ng-ast/ngrev)
Graphical tool for reverse engineering of Angular projects. It allows you to navigate in the structure of your application and observe the relationship between the different modules, providers, and directives. The tool performs static code analysis which means that you don't have to run your application in order to use it.
## [source-map-explorer](https://github.com/danvk/source-map-explorer/blob/master/README.md)
Analyze and debug JavaScript (or Sass or LESS) code bloat through source maps.
The source map explorer determines which file each byte in your minified code came from. It shows you a treemap visualization to help you debug where all the code is coming from.


65 changes: 33 additions & 32 deletions angular.json
Expand Up @@ -11,34 +11,49 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"allowedCommonJsDependencies": [
"bignumber.js",
"nanocurrency",
"blakejs",
"hw-app-nano",
"crypto-js",
"@zxing/library",
"bip39",
"nanocurrency-web",
"qrcode",
"u2f-api",
"randombytes",
"create-hash",
"pbkdf2"
],
"aot": true,
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"assets": [
"src/assets",
"src/pow.wasm"
],
"styles": [
"src/styles.css"
],
"assets": ["src/assets", "src/pow.wasm"],
"styles": ["src/styles.css"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"sourceMap": true,
"extractCss": true,
"namedChunks": false,
"namedChunks": true,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
Expand All @@ -59,9 +74,9 @@
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"sourceMap": true,
"extractCss": true,
"namedChunks": false,
"namedChunks": true,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
Expand Down Expand Up @@ -103,25 +118,15 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"scripts": [],
"styles": [
"src/styles.css"
],
"assets": [
"src/assets",
"src/pow.wasm"
]
"styles": ["src/styles.css"],
"assets": ["src/assets", "src/pow.wasm"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand All @@ -141,12 +146,8 @@
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": [
"**/node_modules/**"
]
"tsConfig": ["e2e/tsconfig.e2e.json"],
"exclude": ["**/node_modules/**"]
}
}
}
Expand All @@ -162,4 +163,4 @@
"prefix": "app"
}
}
}
}
2 changes: 1 addition & 1 deletion e2e/tsconfig.e2e.json
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"baseUrl": "./",
Expand Down