Skip to content

Commit

Permalink
Prepare v7.1.1 release (#68)
Browse files Browse the repository at this point in the history
* Update to configcat-common v8.1.1

* Downgrade TypeScript to v4.0

* Bump version
  • Loading branch information
adams85 authored Aug 4, 2023
1 parent 0e3c396 commit d5c555a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 22 deletions.
32 changes: 16 additions & 16 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "configcat-js-ssr",
"version": "7.1.0",
"version": "7.1.1",
"description": "ConfigCat Feature Flags for Server Side Rendered apps like NuxtJS. Official ConfigCat SDK for Server Side Rendered to easily access feature flags.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"dependencies": {
"axios": "^0.27.2",
"configcat-common": "^8.1.0",
"configcat-common": "^8.1.1",
"tslib": "^2.4.1"
},
"devDependencies": {
Expand Down Expand Up @@ -75,7 +75,7 @@
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"ts-loader": "^9.3.1",
"typescript": "^4.9.4",
"typescript": "^4.0.2",
"webpack": "^5.77.0",
"webpack-auto-inject-version": "^1.2.2",
"webpack-cli": "^4.10.0"
Expand Down
8 changes: 5 additions & 3 deletions tsconfig.karma.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"extends": "./tsconfig.build.esm.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": true,
// Generating d.ts files needs to be disabled to not pollute the build output directory ("./lib").
"declaration": false,
"declarationMap": false,
"declarationDir": null
"target": "ES5",
"module": "ES2015",
"outDir": "./lib/esm"
},
"include": [
"src/**/*.ts",
"test/**/*.ts"
]
}
}

0 comments on commit d5c555a

Please sign in to comment.