mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 18:35:54 +00:00
* feature(integration): initial Angular framework implementation * Package cleanup * Actually add the components this time * fix rendering bug * Add documentation * dependency fixes * add broken example * Make locales ignore angular * dependency updates * Update package-lock.json * Fix broken example * Make example consistent with docs * angular: Update styling advice * angular: Build system stuff * angular: Escape dependency hell * angular: Add dashboard-modal component * angular: Update package.json/prepare for release * angular: Fix styling bugs * add Angular dependencies * Update README.md * lint fixes — those deps are in root * Update README.md Co-authored-by: Adam Medford <adammedford@gmail.com> Co-authored-by: Artur Paikin <artur@arturpaikin.com>
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"angular": {
|
|
"projectType": "library",
|
|
"root": "projects/angular",
|
|
"sourceRoot": "projects/angular/src",
|
|
"prefix": "uppy",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
"options": {
|
|
"tsConfig": "projects/angular/tsconfig.lib.json",
|
|
"project": "projects/angular/ng-package.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"tsConfig": "projects/angular/tsconfig.lib.prod.json"
|
|
}
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"main": "projects/angular/src/test.ts",
|
|
"tsConfig": "projects/angular/tsconfig.spec.json",
|
|
"karmaConfig": "projects/angular/karma.conf.js"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
"options": {
|
|
"tsConfig": [
|
|
"projects/angular/tsconfig.lib.json",
|
|
"projects/angular/tsconfig.spec.json"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}},
|
|
"defaultProject": "angular"
|
|
}
|