@fluidframework/core-interfaces 2.0.0-internal.7.2.2 → 2.0.0-internal.7.3.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/CHANGELOG.md +4 -0
- package/api-extractor.json +3 -0
- package/dist/core-interfaces-alpha.d.ts +907 -0
- package/dist/core-interfaces-beta.d.ts +907 -0
- package/dist/core-interfaces-public.d.ts +907 -0
- package/dist/core-interfaces-untrimmed.d.ts +907 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/core-interfaces-alpha.d.ts +907 -0
- package/lib/core-interfaces-beta.d.ts +907 -0
- package/lib/core-interfaces-public.d.ts +907 -0
- package/lib/core-interfaces-untrimmed.d.ts +907 -0
- package/package.json +23 -8
- package/tsconfig.esnext.json +1 -2
- package/tsconfig.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-interfaces",
|
|
3
|
-
"version": "2.0.0-internal.7.
|
|
3
|
+
"version": "2.0.0-internal.7.3.0",
|
|
4
4
|
"description": "Fluid object interfaces",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,33 +15,48 @@
|
|
|
15
15
|
"module": "lib/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@fluid-tools/build-cli": "^0.
|
|
18
|
+
"@fluid-tools/build-cli": "^0.28.0",
|
|
19
19
|
"@fluidframework/build-common": "^2.0.3",
|
|
20
|
-
"@fluidframework/build-tools": "^0.
|
|
21
|
-
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.7.2.
|
|
22
|
-
"@fluidframework/eslint-config-fluid": "^3.
|
|
23
|
-
"@microsoft/api-extractor": "^7.
|
|
20
|
+
"@fluidframework/build-tools": "^0.28.0",
|
|
21
|
+
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.7.2.0",
|
|
22
|
+
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
23
|
+
"@microsoft/api-extractor": "^7.38.3",
|
|
24
24
|
"@types/node": "^16.18.38",
|
|
25
|
+
"copyfiles": "^2.4.1",
|
|
25
26
|
"eslint": "~8.50.0",
|
|
26
27
|
"prettier": "~3.0.3",
|
|
27
28
|
"rimraf": "^4.4.0",
|
|
28
29
|
"typescript": "~5.1.6"
|
|
29
30
|
},
|
|
31
|
+
"fluidBuild": {
|
|
32
|
+
"tasks": {
|
|
33
|
+
"build:docs": {
|
|
34
|
+
"dependsOn": [
|
|
35
|
+
"...",
|
|
36
|
+
"api-extractor:commonjs",
|
|
37
|
+
"api-extractor:esnext"
|
|
38
|
+
],
|
|
39
|
+
"script": false
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
30
43
|
"typeValidation": {
|
|
31
44
|
"broken": {}
|
|
32
45
|
},
|
|
33
46
|
"scripts": {
|
|
47
|
+
"api": "fluid-build . --task api",
|
|
48
|
+
"api-extractor:commonjs": "api-extractor run --local",
|
|
49
|
+
"api-extractor:esnext": "copyfiles -u 1 \"dist/**/*-@(alpha|beta|public|untrimmed).d.ts\" lib",
|
|
34
50
|
"build": "fluid-build . --task build",
|
|
35
51
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
36
52
|
"build:compile": "fluid-build . --task compile",
|
|
37
|
-
"build:docs": "api-extractor run --local",
|
|
38
53
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
39
54
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
40
55
|
"ci:build": "npm run build:compile",
|
|
41
56
|
"ci:build:docs": "api-extractor run",
|
|
42
57
|
"ci:test": "echo No test for this package",
|
|
43
58
|
"ci:test:coverage": "echo No test for this package",
|
|
44
|
-
"clean": "rimraf --glob dist lib \"
|
|
59
|
+
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
45
60
|
"eslint": "eslint --format stylish src",
|
|
46
61
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
47
62
|
"format": "npm run prettier:fix",
|
package/tsconfig.esnext.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends":
|
|
2
|
+
"extends": [
|
|
3
|
+
"../../../common/build/build-common/tsconfig.base.json",
|
|
4
|
+
"../../../common/build/build-common/tsconfig.cjs.json",
|
|
5
|
+
],
|
|
6
|
+
"include": ["src/**/*"],
|
|
3
7
|
"exclude": ["src/test/**/*"],
|
|
4
8
|
"compilerOptions": {
|
|
5
9
|
"rootDir": "./src",
|
|
6
10
|
"outDir": "./dist",
|
|
7
|
-
"composite": true,
|
|
8
11
|
},
|
|
9
|
-
"include": ["src/**/*"],
|
|
10
12
|
}
|