Skip to content

Commit a4e4583

Browse files
authored
Prepare v8.1.1 release (#84)
* Update to configcat-common v8.1.1 * Downgrade TypeScript to v4.0 * Bump version
1 parent f3d48db commit a4e4583

3 files changed

Lines changed: 24 additions & 22 deletions

File tree

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configcat-js",
3-
"version": "8.1.0",
3+
"version": "8.1.1",
44
"description": "ConfigCat is a configuration as a service that lets you manage your features and configurations without actually deploying new code.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -33,7 +33,7 @@
3333
"license": "MIT",
3434
"homepage": "https://configcat.com",
3535
"dependencies": {
36-
"configcat-common": "^8.1.0",
36+
"configcat-common": "^8.1.1",
3737
"tslib": "^2.4.1"
3838
},
3939
"devDependencies": {
@@ -67,7 +67,7 @@
6767
"mocha": "^10.2.0",
6868
"mock-xmlhttprequest": "^8.1.0",
6969
"ts-loader": "^9.3.1",
70-
"typescript": "^4.9.4",
70+
"typescript": "^4.0.2",
7171
"webpack": "^5.77.0",
7272
"webpack-auto-inject-version": "^1.2.2",
7373
"webpack-cli": "^4.10.0"

tsconfig.karma.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
2-
"extends": "./tsconfig.build.esm.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"sourceMap": true,
55
// Generating d.ts files needs to be disabled to not pollute the build output directory ("./lib").
66
"declaration": false,
77
"declarationMap": false,
8-
"declarationDir": null
8+
"target": "ES5",
9+
"module": "ES2015",
10+
"outDir": "./lib/esm"
911
},
1012
"include": [
1113
"src/**/*.ts",
1214
"test/**/*.ts"
1315
]
14-
}
16+
}

0 commit comments

Comments
 (0)