@fluidframework/agent-scheduler 0.58.2002 → 0.59.1000
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 +3 -0
- package/package.json +17 -11
- package/tsconfig.json +4 -2
package/.eslintrc.js
CHANGED
|
@@ -7,6 +7,9 @@ module.exports = {
|
|
|
7
7
|
"extends": [
|
|
8
8
|
"@fluidframework/eslint-config-fluid"
|
|
9
9
|
],
|
|
10
|
+
"parserOptions": {
|
|
11
|
+
"project": ["./tsconfig.json", "./src/test/tsconfig.json"]
|
|
12
|
+
},
|
|
10
13
|
"rules": {
|
|
11
14
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
12
15
|
"no-null/no-null": "off"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/agent-scheduler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.59.1000",
|
|
4
4
|
"description": "Built in runtime object for distributing agents across instances of a container",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "concurrently npm:build:compile npm:lint",
|
|
19
|
-
"build:compile": "concurrently npm:tsc npm:build:esnext",
|
|
19
|
+
"build:compile": "concurrently npm:tsc npm:build:esnext && npm run build:test",
|
|
20
20
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
21
21
|
"build:full": "npm run build",
|
|
22
22
|
"build:full:compile": "npm run build:compile",
|
|
23
|
+
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
23
24
|
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
24
25
|
"dev": "npm run build:dev -- --watch",
|
|
25
26
|
"eslint": "eslint --format stylish src",
|
|
@@ -52,19 +53,20 @@
|
|
|
52
53
|
"dependencies": {
|
|
53
54
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
54
55
|
"@fluidframework/common-utils": "^0.32.1",
|
|
55
|
-
"@fluidframework/container-definitions": "^0.
|
|
56
|
-
"@fluidframework/core-interfaces": "^0.
|
|
57
|
-
"@fluidframework/datastore": "^0.
|
|
58
|
-
"@fluidframework/datastore-definitions": "^0.
|
|
59
|
-
"@fluidframework/map": "^0.
|
|
60
|
-
"@fluidframework/register-collection": "^0.
|
|
61
|
-
"@fluidframework/runtime-definitions": "^0.
|
|
62
|
-
"@fluidframework/runtime-utils": "^0.
|
|
56
|
+
"@fluidframework/container-definitions": "^0.48.1000",
|
|
57
|
+
"@fluidframework/core-interfaces": "^0.43.1000",
|
|
58
|
+
"@fluidframework/datastore": "^0.59.1000",
|
|
59
|
+
"@fluidframework/datastore-definitions": "^0.59.1000",
|
|
60
|
+
"@fluidframework/map": "^0.59.1000",
|
|
61
|
+
"@fluidframework/register-collection": "^0.59.1000",
|
|
62
|
+
"@fluidframework/runtime-definitions": "^0.59.1000",
|
|
63
|
+
"@fluidframework/runtime-utils": "^0.59.1000",
|
|
63
64
|
"uuid": "^8.3.1"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
67
|
+
"@fluidframework/agent-scheduler-previous": "npm:@fluidframework/agent-scheduler@^0.58.0",
|
|
66
68
|
"@fluidframework/build-common": "^0.23.0",
|
|
67
|
-
"@fluidframework/eslint-config-fluid": "^0.
|
|
69
|
+
"@fluidframework/eslint-config-fluid": "^0.28.1000",
|
|
68
70
|
"@rushstack/eslint-config": "^2.5.1",
|
|
69
71
|
"@types/mocha": "^8.2.2",
|
|
70
72
|
"@types/node": "^14.18.0",
|
|
@@ -93,5 +95,9 @@
|
|
|
93
95
|
"library": "main"
|
|
94
96
|
}
|
|
95
97
|
}
|
|
98
|
+
},
|
|
99
|
+
"typeValidation": {
|
|
100
|
+
"version": "0.59.1000",
|
|
101
|
+
"broken": {}
|
|
96
102
|
}
|
|
97
103
|
}
|
package/tsconfig.json
CHANGED
|
@@ -2,11 +2,13 @@
|
|
|
2
2
|
"extends": "@fluidframework/build-common/ts-common-config.json",
|
|
3
3
|
"exclude": [
|
|
4
4
|
"dist",
|
|
5
|
-
"node_modules"
|
|
5
|
+
"node_modules",
|
|
6
|
+
"src/test/**/*"
|
|
6
7
|
],
|
|
7
8
|
"compilerOptions": {
|
|
8
9
|
"rootDir": "./src",
|
|
9
|
-
"outDir": "./dist"
|
|
10
|
+
"outDir": "./dist",
|
|
11
|
+
"composite": true
|
|
10
12
|
},
|
|
11
13
|
"include": [
|
|
12
14
|
"src/**/*"
|