Skip to content

Commit

Permalink
Merge pull request #2 from IBM/saikumar1607-202207120647
Browse files Browse the repository at this point in the history
import fix
  • Loading branch information
ibm-cloud-appconfiguration authored Jul 12, 2022
2 parents ca70a6f + dfaf1b9 commit d5bab9e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
node_modules/
dist/
examples/
test/
example/
*.config.js
src/polyfill/eventsource.js
src/polyfill/eventsource.d.ts
19 changes: 0 additions & 19 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "package-lock.json|^.secrets.baseline$",
"lines": null
},
"generated_at": "2022-07-05T08:16:39Z",
"generated_at": "2022-07-12T06:49:02Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down
24 changes: 2 additions & 22 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ibm-appconfiguration-js-client-sdk",
"version": "0.0.1",
"version": "0.0.2",
"description": "IBM Cloud App Configuration JavaScript Client SDK",
"keywords": [
"client-sdk",
Expand All @@ -18,6 +18,9 @@
"author": "IBM",
"main": "dist/src/index.js",
"unpkg": "dist/appconfiguration.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:tsc && npm run build:webpack",
"build:tsc": "tsc",
Expand All @@ -33,7 +36,6 @@
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/murmurhash": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"del-cli": "^4.0.1",
Expand Down
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */

/* JavaScript Support */
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */

Expand Down Expand Up @@ -103,9 +103,7 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": [
"node_modules",
"./test/**/*.test.ts",
"./dist/**/*"
"include": [
"src"
]
}

0 comments on commit d5bab9e

Please sign in to comment.