Skip to content

Commit 538e680

Browse files
Merge branch 'main' of https://github.com/microsoft/FeatureManagement-JavaScript into merge-main-to-preview
2 parents ddee610 + f247557 commit 538e680

File tree

15 files changed

+206
-217
lines changed

15 files changed

+206
-217
lines changed

sdk/feature-management-applicationinsights-browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-browser",
3-
"version": "2.0.0-preview.3",
3+
"version": "2.0.0",
44
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/umd/index.js",
66
"module": "./dist/esm/index.js",
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"@microsoft/applicationinsights-web": "^3.3.2",
48-
"@microsoft/feature-management": "2.0.0-preview.3"
48+
"@microsoft/feature-management": "2.0.0"
4949
}
5050
}
5151

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const VERSION = "2.0.0-preview.3";
4+
export const VERSION = "2.0.0";

sdk/feature-management-applicationinsights-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management-applicationinsights-node",
3-
"version": "2.0.0-preview.3",
3+
"version": "2.0.0",
44
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
55
"main": "./dist/commonjs/index.js",
66
"module": "./dist/esm/index.js",
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"applicationinsights": "^2.9.6",
48-
"@microsoft/feature-management": "2.0.0-preview.3"
48+
"@microsoft/feature-management": "2.0.0"
4949
}
5050
}
5151

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4-
export const VERSION = "2.0.0-preview.3";
4+
export const VERSION = "2.0.0";

sdk/feature-management/.eslintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
"@typescript-eslint"
3434
],
3535
"rules": {
36+
"keyword-spacing": [
37+
"error",
38+
{
39+
"before": true,
40+
"after": true
41+
}
42+
],
3643
"quotes": [
3744
"error",
3845
"double",

sdk/feature-management/package-lock.json

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

sdk/feature-management/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/feature-management",
3-
"version": "2.0.0-preview.3",
3+
"version": "2.0.0",
44
"description": "Feature Management is a library for enabling/disabling features at runtime. Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.",
55
"main": "./dist/commonjs/index.js",
66
"module": "./dist/esm/index.js",

0 commit comments

Comments
 (0)