Skip to content

Commit

Permalink
Merge pull request #126 from erqk/v8
Browse files Browse the repository at this point in the history
V8
  • Loading branch information
erqk authored Jun 25, 2024
2 parents 194962a + 7ed1401 commit c33aa88
Show file tree
Hide file tree
Showing 583 changed files with 50,508 additions and 14,855 deletions.
545 changes: 380 additions & 165 deletions CHANGELOG.md

Large diffs are not rendered by default.

98 changes: 63 additions & 35 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"newProjectRoot": "",
"projects": {
"ng-dynamic-json-form": {
"projectType": "library",
"root": "projects/ng-dynamic-json-form",
"sourceRoot": "projects/ng-dynamic-json-form/src",
"root": "lib",
"sourceRoot": "lib/src",
"prefix": "",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ng-dynamic-json-form/ng-package.json"
"project": "lib/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ng-dynamic-json-form/tsconfig.lib.prod.json"
"tsConfig": "lib/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ng-dynamic-json-form/tsconfig.lib.json"
"tsConfig": "lib/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/ng-dynamic-json-form/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"],
"karmaConfig": "projects/ng-dynamic-json-form/karma.conf.js"
}
}
}
},
Expand All @@ -48,7 +40,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "docs",
"outputPath": "dist/docs/browser",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
Expand All @@ -58,28 +50,23 @@
"styles": [
"vanilla-jsoneditor/themes/jse-theme-dark.css",
"bootstrap-icons/font/bootstrap-icons.min.css",
"dist/ng-dynamic-json-form/lib/styles/styles.scss",
"src/styles/prism-vsc-dark-plus.css",
"dist/ng-dynamic-json-form/styles/styles.scss",
"src/styles/styles.scss"
],
"scripts": [
"node_modules/marked/marked.min.js",
"node_modules/prismjs/prism.js",
"node_modules/prismjs/components/prism-css.min.js"
]
"scripts": ["node_modules/marked/marked.min.js"]
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumWarning": "4mb",
"maximumError": "8mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "256kb",
"maximumError": "512kb"
}
],
"outputHashing": "all"
Expand Down Expand Up @@ -113,17 +100,58 @@
"browserTarget": "docs:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"server": {
"builder": "@angular-devkit/build-angular:server",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": [],
"karmaConfig": "karma.conf.js"
}
"outputPath": "dist/docs/server",
"main": "server.ts",
"tsConfig": "tsconfig.server.json",
"inlineStyleLanguage": "scss"
},
"configurations": {
"production": {
"outputHashing": "media"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"sourceMap": true,
"extractLicenses": false,
"vendorChunk": true
}
},
"defaultConfiguration": "production"
},
"serve-ssr": {
"builder": "@nguniversal/builders:ssr-dev-server",
"configurations": {
"development": {
"browserTarget": "docs:build:development",
"serverTarget": "docs:server:development"
},
"production": {
"browserTarget": "docs:build:production",
"serverTarget": "docs:server:production"
}
},
"defaultConfiguration": "development"
},
"prerender": {
"builder": "@nguniversal/builders:prerender",
"options": {
"routes": ["/"]
},
"configurations": {
"production": {
"browserTarget": "docs:build:production",
"serverTarget": "docs:server:production"
},
"development": {
"browserTarget": "docs:build:development",
"serverTarget": "docs:server:development"
}
},
"defaultConfiguration": "production"
}
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/126.ae3ae26f654bfdbd.js

Large diffs are not rendered by default.

Loading

0 comments on commit c33aa88

Please sign in to comment.