@fluidframework/devtools 2.51.0-347100 → 2.52.0

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.cjs CHANGED
@@ -19,8 +19,6 @@ module.exports = {
19
19
  {
20
20
  // Overrides for test files
21
21
  files: ["*.spec.ts", "*.test.ts", "src/test/**"],
22
- plugins: ["chai-expect"],
23
- extends: ["plugin:chai-expect/recommended"],
24
22
  rules: {
25
23
  "import/no-nodejs-modules": "off",
26
24
  "unicorn/prefer-module": "off",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluidframework/devtools
2
2
 
3
+ ## 2.52.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.51.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.50.0
4
12
 
5
13
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/devtools",
3
- "version": "2.51.0-347100",
3
+ "version": "2.52.0",
4
4
  "description": "Fluid Framework developer tools",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -77,31 +77,28 @@
77
77
  "temp-directory": "nyc/.nyc_output"
78
78
  },
79
79
  "dependencies": {
80
- "@fluidframework/container-definitions": "2.51.0-347100",
81
- "@fluidframework/core-interfaces": "2.51.0-347100",
82
- "@fluidframework/devtools-core": "2.51.0-347100",
83
- "@fluidframework/fluid-static": "2.51.0-347100"
80
+ "@fluidframework/container-definitions": "~2.52.0",
81
+ "@fluidframework/core-interfaces": "~2.52.0",
82
+ "@fluidframework/devtools-core": "~2.52.0",
83
+ "@fluidframework/fluid-static": "~2.52.0"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@arethetypeswrong/cli": "^0.17.1",
87
87
  "@biomejs/biome": "~1.9.3",
88
- "@fluid-internal/mocha-test-setup": "2.51.0-347100",
89
- "@fluid-tools/build-cli": "^0.56.0",
88
+ "@fluid-internal/mocha-test-setup": "~2.52.0",
89
+ "@fluid-tools/build-cli": "^0.57.0",
90
90
  "@fluidframework/build-common": "^2.0.3",
91
- "@fluidframework/build-tools": "^0.56.0",
92
- "@fluidframework/devtools-previous": "npm:@fluidframework/devtools@2.50.0",
91
+ "@fluidframework/build-tools": "^0.57.0",
92
+ "@fluidframework/devtools-previous": "npm:@fluidframework/devtools@2.51.0",
93
93
  "@fluidframework/eslint-config-fluid": "^5.7.4",
94
94
  "@microsoft/api-extractor": "7.52.8",
95
- "@types/chai": "^4.0.0",
96
95
  "@types/mocha": "^10.0.10",
97
96
  "c8": "^8.0.1",
98
- "chai": "^4.2.0",
99
97
  "concurrently": "^8.2.1",
100
98
  "copyfiles": "^2.4.1",
101
99
  "cross-env": "^7.0.3",
102
100
  "eslint": "~8.55.0",
103
101
  "eslint-config-prettier": "~9.0.0",
104
- "eslint-plugin-chai-expect": "~3.0.0",
105
102
  "mocha": "^10.8.2",
106
103
  "mocha-multi-reporters": "^1.5.1",
107
104
  "rimraf": "^4.4.0",
package/tsconfig.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "rootDir": "src",
5
5
  "outDir": "./lib",
6
- "types": ["chai", "mocha"],
6
+ "types": ["mocha"],
7
7
  "exactOptionalPropertyTypes": false,
8
8
  },
9
9
  "include": ["src/**/*"],