@fluidframework/azure-local-service 2.0.0-dev.7.4.0.215930 → 2.0.0-dev.7.4.0.216897
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-extractor-lint.json +13 -0
- package/package.json +3 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-lint.json",
|
|
4
|
+
"messages": {
|
|
5
|
+
"extractorMessageReporting": {
|
|
6
|
+
// TODO: remove once base config has this enabled as an error
|
|
7
|
+
"ae-incompatible-release-tags": {
|
|
8
|
+
"logLevel": "error",
|
|
9
|
+
"addToApiReportFile": false
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-local-service",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.216897",
|
|
4
4
|
"description": "Local implementation of the Azure Fluid Relay service for testing/development use",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -45,12 +45,13 @@
|
|
|
45
45
|
"build": "fluid-build . --task build",
|
|
46
46
|
"build:compile": "fluid-build . --task compile",
|
|
47
47
|
"build:docs": "api-extractor run --local",
|
|
48
|
+
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
48
49
|
"ci:build:docs": "api-extractor run",
|
|
49
50
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
50
51
|
"eslint": "eslint --format stylish src",
|
|
51
52
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
52
53
|
"format": "npm run prettier:fix",
|
|
53
|
-
"lint": "npm run prettier && npm run eslint",
|
|
54
|
+
"lint": "npm run prettier && npm run check:release-tags && npm run eslint",
|
|
54
55
|
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
55
56
|
"prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
56
57
|
"prettier:fix": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|