Skip to content

Commit

Permalink
Prepare v8.1.1 release (#84)
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 f3d48db commit a4e4583
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",
"version": "8.1.0",
"version": "8.1.1",
"description": "ConfigCat is a configuration as a service that lets you manage your features and configurations without actually deploying new code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"license": "MIT",
"homepage": "https://configcat.com",
"dependencies": {
"configcat-common": "^8.1.0",
"configcat-common": "^8.1.1",
"tslib": "^2.4.1"
},
"devDependencies": {
Expand Down Expand Up @@ -67,7 +67,7 @@
"mocha": "^10.2.0",
"mock-xmlhttprequest": "^8.1.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 a4e4583

Please sign in to comment.