Skip to content

Commit

Permalink
release: 17.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Nov 9, 2023
1 parent af59464 commit 38d59d9
Show file tree
Hide file tree
Showing 8 changed files with 442 additions and 527 deletions.
4 changes: 1 addition & 3 deletions lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export * from './src/filesaver.service';
export * from './src/filesaver.directive';
export * from './src/filesaver.module';
export * from './public-api';
2 changes: 1 addition & 1 deletion lib/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"dest": "../publish",
"deleteDestPath": true,
"lib": {
"entryFile": "index.ts"
"entryFile": "public-api.ts"
}
}
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-filesaver",
"version": "16.0.0",
"version": "17.0.0",
"description": "Simple file save with FileSaver.js",
"keywords": [
"angular",
Expand Down
3 changes: 3 additions & 0 deletions lib/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './src/filesaver.service';
export * from './src/filesaver.directive';
export * from './src/filesaver.module';
5 changes: 2 additions & 3 deletions lib/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
"alwaysStrict": true,
"inlineSources": true,
"strictFunctionTypes": true,
"stripInternal": true
"stripInternal": true,
"declarationMap": false
},
"files": ["./src/filesaver.module.ts"],
"include": ["**/*.ts"],
"angularCompilerOptions": {
"enableIvy": true,
"compilationMode": "partial"
}
}
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-filesaver",
"version": "16.0.0",
"version": "17.0.0",
"description": "Simple file save with FileSaver.js",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,22 +29,22 @@
"release:next": "npm run build && cd publish && npm publish --access public --tag next"
},
"dependencies": {
"@angular/animations": "^17.0.0-next.0",
"@angular/common": "^17.0.0-next.0",
"@angular/compiler": "^17.0.0-next.0",
"@angular/core": "^17.0.0-next.0",
"@angular/forms": "^17.0.0-next.0",
"@angular/platform-browser": "^17.0.0-next.0",
"@angular/platform-browser-dynamic": "^17.0.0-next.0",
"@angular/router": "^17.0.0-next.0",
"@angular/animations": "^17.0.0",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/router": "^17.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.0"
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0-rc.2",
"@angular/cli": "^17.0.0-rc.2",
"@angular/compiler-cli": "^17.0.0-next.0",
"@angular-devkit/build-angular": "^17.0.0",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.0",
"@types/jasmine": "~5.1.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
Expand All @@ -53,15 +53,15 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.2.2",
"@angular-eslint/builder": "^16.2.0",
"@angular-eslint/eslint-plugin": "^16.2.0",
"@angular-eslint/eslint-plugin-template": "^16.2.0",
"@angular-eslint/schematics": "^16.2.0",
"@angular-eslint/template-parser": "^16.2.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.52.0",
"ng-packagr": "^17.0.0-rc.1",
"@angular-eslint/builder": "^17.0.0",
"@angular-eslint/eslint-plugin": "^17.0.0",
"@angular-eslint/eslint-plugin-template": "^17.0.0",
"@angular-eslint/schematics": "^17.0.0",
"@angular-eslint/template-parser": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"ng-packagr": "^17.0.0",
"@types/file-saver": "^2.0.5",
"file-saver": "^2.0.5"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
Expand Down
Loading

0 comments on commit 38d59d9

Please sign in to comment.