@fluid-experimental/dds-interceptions 2.0.0-dev-rc.5.0.0.271262 → 2.0.0-dev-rc.5.0.0.272251

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.json",
4
+ "mainEntryPointFilePath": "<projectFolder>/lib/index.d.ts"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
4
+ "mainEntryPointFilePath": "<projectFolder>/dist/index.d.ts"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
4
+ "mainEntryPointFilePath": "<projectFolder>/lib/index.d.ts"
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/dds-interceptions",
3
- "version": "2.0.0-dev-rc.5.0.0.271262",
3
+ "version": "2.0.0-dev-rc.5.0.0.272251",
4
4
  "description": "Distributed Data Structures that support an interception callback",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,26 +47,27 @@
47
47
  "temp-directory": "nyc/.nyc_output"
48
48
  },
49
49
  "dependencies": {
50
- "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.271262",
51
- "@fluidframework/map": "2.0.0-dev-rc.5.0.0.271262",
52
- "@fluidframework/merge-tree": "2.0.0-dev-rc.5.0.0.271262",
53
- "@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.271262",
54
- "@fluidframework/sequence": "2.0.0-dev-rc.5.0.0.271262"
50
+ "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.272251",
51
+ "@fluidframework/map": "2.0.0-dev-rc.5.0.0.272251",
52
+ "@fluidframework/merge-tree": "2.0.0-dev-rc.5.0.0.272251",
53
+ "@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.272251",
54
+ "@fluidframework/sequence": "2.0.0-dev-rc.5.0.0.272251"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.15.2",
58
58
  "@biomejs/biome": "^1.7.3",
59
- "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.271262",
59
+ "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.272251",
60
60
  "@fluid-tools/build-cli": "^0.39.0",
61
61
  "@fluidframework/build-common": "^2.0.3",
62
62
  "@fluidframework/build-tools": "^0.39.0",
63
63
  "@fluidframework/eslint-config-fluid": "^5.3.0",
64
- "@fluidframework/test-runtime-utils": "2.0.0-dev-rc.5.0.0.271262",
64
+ "@fluidframework/test-runtime-utils": "2.0.0-dev-rc.5.0.0.272251",
65
65
  "@microsoft/api-extractor": "^7.45.1",
66
66
  "@types/diff": "^3.5.1",
67
67
  "@types/mocha": "^9.1.1",
68
68
  "@types/node": "^18.19.0",
69
69
  "c8": "^8.0.1",
70
+ "concurrently": "^8.2.1",
70
71
  "copyfiles": "^2.4.1",
71
72
  "cross-env": "^7.0.3",
72
73
  "diff": "^3.5.0",
@@ -95,9 +96,12 @@
95
96
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
96
97
  "check:are-the-types-wrong": "attw --pack .",
97
98
  "check:biome": "biome check . --formatter-enabled=true",
99
+ "check:exports": "concurrently \"npm:check:exports:*\"",
100
+ "check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
101
+ "check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
102
+ "check:exports:esm:index": "api-extractor run --config api-extractor/api-extractor-lint-index.esm.json",
98
103
  "check:format": "npm run check:prettier",
99
104
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
100
- "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
101
105
  "ci:build:docs": "api-extractor run",
102
106
  "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
103
107
  "eslint": "eslint --format stylish src",
package/tsdoc.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
3
+ "extends": ["../../../common/build/build-common/tsdoc-base.json"]
4
+ }