Skip to content

Commit

Permalink
chore(release): Release v0.2.8 - See CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun-KumarH committed Dec 22, 2021
1 parent bbd342a commit 0e6327f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
],
"rules": {
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/naming-convention": [
"error",
{
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.2.8 (December 22nd, 2021)

- updated ts config and added no floating promise rule

### 0.2.7 (December 22nd, 2021)

- updated RC dependencies
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@restorecommerce/notification-srv",
"version": "0.2.7",
"version": "0.2.8",
"description": "Restorecommerce notification microservice",
"main": "lib/start.js",
"author": "n-fuse GmbH",
Expand Down
2 changes: 1 addition & 1 deletion src/send.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as Mailer from '@restorecommerce/mailer';
import Mailer from '@restorecommerce/mailer';
import { Notification } from './notification';

/**
Expand Down
2 changes: 1 addition & 1 deletion test/notification.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import * as assert from 'assert';
import assert from 'assert';
import { createServiceConfig } from '@restorecommerce/service-config';
import { Events } from '@restorecommerce/kafka-client';
import { GrpcClient } from '@restorecommerce/grpc-client';
Expand Down
13 changes: 9 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"compilerOptions": {
"target": "ES6",
"target": "ES2021",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
// "strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": false,
"importHelpers": true,
"skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"outDir": "lib",
"typeRoots": [
"node_modules/@types"
Expand All @@ -22,8 +27,8 @@
],
"exclude": [
"**/*.test.ts",
"doc",
"node_modules",
"lib",
"node_modules"
"doc"
]
}
}

0 comments on commit 0e6327f

Please sign in to comment.