Skip to content

Commit

Permalink
DEVEXP-586: Update SDK dependency to 1.2.0 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
asein-sinch authored Oct 7, 2024
1 parent e1ab91e commit 02ef7b4
Show file tree
Hide file tree
Showing 15 changed files with 1,546 additions and 824 deletions.
9 changes: 8 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import path from 'node:path';
import { fileURLToPath } from 'node:url';
import js from '@eslint/js';
import { FlatCompat } from '@eslint/eslintrc';
import typescriptParser from '@typescript-eslint/parser';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand All @@ -26,7 +27,11 @@ export default [...compat.extends('eslint:recommended', 'google', 'prettier'), {
globals: {
...globals.node,
},

parser: typescriptParser,
parserOptions: {
project: true,
sourceType: 'module',
},
ecmaVersion: 'latest',
sourceType: 'module',
},
Expand Down Expand Up @@ -56,5 +61,7 @@ export default [...compat.extends('eslint:recommended', 'google', 'prettier'), {
ignorePattern: '^import.+|test',
}],

'deprecation/deprecation': 'warn',

},
}];

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"type": "module",
"scripts": {
"start": "node src/server.js",
"compile": "tsc"
"compile": "npm install && tsc"
},
"dependencies": {
"@sinch/sdk-core": "^1.1.0",
"@sinch/sdk-core": "^1.2.0",
"dotenv": "^16.4.5",
"express": "^4.20.0"
}
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"type": "module",
"scripts": {
"start": "node src/app.js",
"compile": "tsc"
"compile": "npm install && tsc"
},
"dependencies": {
"@sinch/sdk-core": "^1.1.0",
"@sinch/sdk-core": "^1.2.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.14"
}
Expand Down
Loading

0 comments on commit 02ef7b4

Please sign in to comment.