Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
``` javascript
import { ApplicationInsights } from "@microsoft/applicationinsights-web"
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
import { trackEvent, createTelemetryPublisher } from "@microsoft/feature-management-applicationinsights-browser";
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-browser";

const appInsights = new ApplicationInsights({ config: {
connectionString: CONNECTION_STRING
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/feature-management-applicationinsights-browser",
"version": "2.0.0-preview.3",
"version": "2.0.0",
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -24,6 +24,9 @@
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"publishConfig": {
"tag": "latest"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
Expand All @@ -42,7 +45,7 @@
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.3.2",
"@microsoft/feature-management": "2.0.0-preview.3"
"@microsoft/feature-management": "2.0.0"
}
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const VERSION = "2.0.0-preview.3";
export const VERSION = "2.0.0";
2 changes: 1 addition & 1 deletion sdk/feature-management-applicationinsights-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Feature Management Application Insights Plugin for Browser provides a solution f
``` javascript
import appInsights from "applicationinsights";
import { FeatureManager, ConfigurationObjectFeatureFlagProvider } from "@microsoft/feature-management";
import { trackEvent, publishTelemetry } from "@microsoft/feature-management-applicationinsights-node";
import { createTelemetryPublisher, trackEvent } from "@microsoft/feature-management-applicationinsights-node";

appInsights.setup(CONNECTION_STRING)
.start();
Expand Down
7 changes: 5 additions & 2 deletions sdk/feature-management-applicationinsights-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/feature-management-applicationinsights-node",
"version": "2.0.0-preview.3",
"version": "2.0.0",
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -24,6 +24,9 @@
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"publishConfig": {
"tag": "latest"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
Expand All @@ -42,7 +45,7 @@
},
"dependencies": {
"applicationinsights": "^2.9.6",
"@microsoft/feature-management": "2.0.0-preview.3"
"@microsoft/feature-management": "2.0.0"
}
}

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const VERSION = "2.0.0-preview.3";
export const VERSION = "2.0.0";
7 changes: 7 additions & 0 deletions sdk/feature-management/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@
"@typescript-eslint"
],
"rules": {
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"quotes": [
"error",
"double",
Expand Down
Loading
Loading