Skip to content

Commit 174c027

Browse files
authored
Prepare v1.1.1 release (#16)
* Update to configcat-common v8.1.1 * Downgrade TypeScript to v4.0 * Bump version
1 parent 588bcb8 commit 174c027

File tree

3 files changed

+24
-22
lines changed

3 files changed

+24
-22
lines changed

Diff for: package-lock.json

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configcat-js-chromium-extension",
3-
"version": "1.1.0",
3+
"version": "1.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
"homepage": "https://configcat.com",
3434
"dependencies": {
3535
"@types/chrome": "0.0.193",
36-
"configcat-common": "^8.1.0",
36+
"configcat-common": "^8.1.1",
3737
"tslib": "^2.4.1"
3838
},
3939
"devDependencies": {
@@ -65,7 +65,7 @@
6565
"karma-webpack": "^5.0.0",
6666
"mocha": "^10.2.0",
6767
"ts-loader": "^9.3.1",
68-
"typescript": "^4.9.4",
68+
"typescript": "^4.0.2",
6969
"webpack": "^5.77.0",
7070
"webpack-auto-inject-version": "^1.2.2",
7171
"webpack-cli": "^4.10.0"

Diff for: tsconfig.karma.json

+5-3
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)