Skip to content

Commit

Permalink
🎉 feat: release ngx-dropzone v18
Browse files Browse the repository at this point in the history
  • Loading branch information
hackingharold authored May 31, 2024
1 parent 3e9b4dd commit afb4765
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 36 deletions.
12 changes: 6 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,12 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/app",
"outputPath": {
"base": "dist/app"
},
"index": "projects/app/src/index.html",
"main": "projects/app/src/main.ts",
"polyfills": [
"zone.js"
],
Expand All @@ -112,7 +113,8 @@
"styles": [
"@angular/material/prebuilt-themes/indigo-pink.css"
],
"scripts": []
"scripts": [],
"browser": "projects/app/src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -131,9 +133,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down
Binary file modified bun.lockb
Binary file not shown.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,29 @@
"lint:material": "ng lint material"
},
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/cdk": "~17.0.1",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/material": "~17.0.1",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
"@angular/animations": "^18.0.1",
"@angular/cdk": "~18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/material": "~18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "^0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.2",
"@angular-eslint/builder": "^17.1.0",
"@angular-eslint/eslint-plugin": "17.1.0",
"@angular-eslint/eslint-plugin-template": "17.1.0",
"@angular-eslint/schematics": "^17.1.0",
"@angular-eslint/template-parser": "17.1.0",
"@angular/cli": "^17.0.2",
"@angular/compiler-cli": "^17.0.4",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "~3.8.0",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
Expand All @@ -49,7 +49,7 @@
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^17.0.2",
"typescript": "5.2.2"
"ng-packagr": "^18.0.0",
"typescript": "5.4.5"
}
}
}
6 changes: 3 additions & 3 deletions projects/cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"cdk"
],
"peerDependencies": {
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"rxjs": "^7.4.0"
}
}
8 changes: 4 additions & 4 deletions projects/material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"material"
],
"peerDependencies": {
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@ngx-dropzone/cdk": "^17.0.0",
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@ngx-dropzone/cdk": "^18.0.0",
"rxjs": "^7.4.0"
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ npm install @ngx-dropzone/cdk @ngx-dropzone/material
## Versioning

For the versioning, we stay consistent with the major Angular releases.
So Angular (components) v17 will be compatible with `@ngx-dropzone/cdk@17.x.x`.
So Angular (components) 18 will be compatible with `@ngx-dropzone/cdk@18.x.x`.

Please note, that v16 is the first officially supported version.
For older Angular releases, use the libs at your own risk.
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"@ngx-dropzone/material": ["dist/material"]
},
"outDir": "./dist/out-tsc",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
Expand Down

0 comments on commit afb4765

Please sign in to comment.