@fluid-experimental/property-common 2.92.0 → 2.93.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/.mocharc.cjs +11 -0
- package/CHANGELOG.md +4 -0
- package/eslint.config.mts +1 -1
- package/package.json +9 -7
- package/platform-dependent/CHANGELOG.md +4 -0
- package/platform-dependent/package.json +1 -1
- package/.mocharc.json +0 -8
package/.mocharc.cjs
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
const getFluidTestMochaConfig = require("@fluid-internal/mocha-test-setup/mocharc-common");
|
|
9
|
+
|
|
10
|
+
const config = getFluidTestMochaConfig(__dirname);
|
|
11
|
+
module.exports = config;
|
package/CHANGELOG.md
CHANGED
package/eslint.config.mts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import type { Linter } from "eslint";
|
|
7
|
-
import { recommended } from "
|
|
7
|
+
import { recommended } from "@fluidframework/eslint-config-fluid/flat.mts";
|
|
8
8
|
|
|
9
9
|
const config: Linter.Config[] = [
|
|
10
10
|
...recommended,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-common",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.93.0",
|
|
4
4
|
"description": "common functions used in properties",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -48,19 +48,19 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@biomejs/biome": "~2.4.5",
|
|
51
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
51
|
+
"@fluid-internal/mocha-test-setup": "~2.93.0",
|
|
52
52
|
"@fluidframework/build-common": "^2.0.3",
|
|
53
53
|
"@fluidframework/build-tools": "^0.64.0",
|
|
54
|
-
"@microsoft/api-extractor": "7.
|
|
54
|
+
"@microsoft/api-extractor": "7.58.1",
|
|
55
55
|
"@types/chai": "^4.0.0",
|
|
56
56
|
"@types/debug": "^4.1.5",
|
|
57
57
|
"@types/lodash": "^4.14.118",
|
|
58
58
|
"@types/mocha": "^10.0.10",
|
|
59
|
-
"@types/node": "~
|
|
59
|
+
"@types/node": "~22.19.17",
|
|
60
60
|
"@types/semver": "^7.7.0",
|
|
61
61
|
"@types/sinon": "^17.0.3",
|
|
62
62
|
"c8": "^10.1.3",
|
|
63
|
-
"chai": "^4.
|
|
63
|
+
"chai": "^4.5.0",
|
|
64
64
|
"cross-env": "^10.1.0",
|
|
65
65
|
"eslint": "~9.39.1",
|
|
66
66
|
"jiti": "^2.6.1",
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
80
80
|
"build:compile": "fluid-build . --task compile",
|
|
81
81
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
82
|
-
"build:test": "
|
|
82
|
+
"build:test": "npm run build:test:cjs",
|
|
83
|
+
"build:test:cjs": "tsc --project ./src/test/tsconfig.json",
|
|
83
84
|
"check:biome": "biome check .",
|
|
84
85
|
"check:format": "npm run check:biome",
|
|
85
86
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
|
@@ -91,7 +92,8 @@
|
|
|
91
92
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
92
93
|
"test": "npm run test:mocha",
|
|
93
94
|
"test:coverage": "c8 npm test",
|
|
94
|
-
"test:mocha": "
|
|
95
|
+
"test:mocha": "npm run test:mocha:cjs",
|
|
96
|
+
"test:mocha:cjs": "cross-env FLUID_TEST_MODULE_SYSTEM=CJS mocha",
|
|
95
97
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
96
98
|
"tsc": "tsc"
|
|
97
99
|
}
|