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 cbfcbdf commit 5755b54
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 37 deletions.
3 changes: 1 addition & 2 deletions lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './src/component';
export * from './src/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": "ng-github-button",
"version": "17.0.0-rc.0",
"version": "17.0.0",
"description": "Unofficial GitHub buttons in Angular.",
"author": "cipchk <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions lib/public-api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './src/component';
export * from './src/module';
7 changes: 0 additions & 7 deletions lib/test.ts

This file was deleted.

4 changes: 2 additions & 2 deletions lib/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"alwaysStrict": true,
"inlineSources": true,
"strictFunctionTypes": true,
"stripInternal": true
"stripInternal": true,
"declarationMap": false
},
"files": ["./src/module.ts"],
"include": ["**/*.ts"],
"angularCompilerOptions": {
"enableIvy": true,
"compilationMode": "partial"
}
}
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-github-button",
"version": "17.0.0-rc.0",
"version": "17.0.0",
"description": "Unofficial GitHub buttons in Angular.",
"keywords": [
"angular",
Expand Down Expand Up @@ -32,22 +32,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 @@ -56,15 +56,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",
"ngx-highlight-js": "^17.0.0-rc.0"
"@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",
"ngx-highlight-js": "^17.0.0"
}
}
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

0 comments on commit 5755b54

Please sign in to comment.