@fluidframework/azure-local-service 1.2.0-106934 → 1.2.0-111554
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/.eslintrc.js +1 -1
- package/package.json +5 -1
package/.eslintrc.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
7
|
-
extends: [require.resolve("@fluidframework/eslint-config-fluid/strict")],
|
|
7
|
+
extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
|
|
8
8
|
plugins: ["eslint-plugin-jsdoc"],
|
|
9
9
|
parserOptions: {
|
|
10
10
|
project: ["./tsconfig.json"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-local-service",
|
|
3
|
-
"version": "1.2.0-
|
|
3
|
+
"version": "1.2.0-111554",
|
|
4
4
|
"description": "Local implementation of the Azure Fluid Relay service for testing/development use",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -23,8 +23,11 @@
|
|
|
23
23
|
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
24
24
|
"eslint": "eslint --format stylish src",
|
|
25
25
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
26
|
+
"format": "npm run prettier:fix",
|
|
26
27
|
"lint": "npm run eslint",
|
|
27
28
|
"lint:fix": "npm run eslint:fix",
|
|
29
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
30
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
28
31
|
"start": "forever start dist/index.js",
|
|
29
32
|
"start:debug": "node --inspect=0.0.0.0:9229 dist/index.js",
|
|
30
33
|
"stop": "forever stop dist/index.js",
|
|
@@ -44,6 +47,7 @@
|
|
|
44
47
|
"eslint": "~8.6.0",
|
|
45
48
|
"eslint-plugin-jsdoc": "~39.3.0",
|
|
46
49
|
"forever": "^4.0.3",
|
|
50
|
+
"prettier": "~2.6.2",
|
|
47
51
|
"rimraf": "^2.6.2",
|
|
48
52
|
"ts-node": "^8.6.2",
|
|
49
53
|
"typescript": "~4.5.5"
|