@fluidframework/presence 2.113.0-411909 → 2.114.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.
Files changed (1) hide show
  1. package/package.json +10 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/presence",
3
- "version": "2.113.0-411909",
3
+ "version": "2.114.0",
4
4
  "description": "A component for lightweight data sharing within a single session",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -61,15 +61,15 @@
61
61
  "!**/test/**"
62
62
  ],
63
63
  "dependencies": {
64
- "@fluid-internal/presence-definitions": "2.113.0-411909",
65
- "@fluid-internal/presence-runtime": "2.113.0-411909",
66
- "@fluidframework/core-utils": "2.113.0-411909",
67
- "@fluidframework/runtime-definitions": "2.113.0-411909"
64
+ "@fluid-internal/presence-definitions": "~2.114.0",
65
+ "@fluid-internal/presence-runtime": "~2.114.0",
66
+ "@fluidframework/core-utils": "~2.114.0",
67
+ "@fluidframework/runtime-definitions": "~2.114.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@arethetypeswrong/cli": "^0.18.2",
71
71
  "@biomejs/biome": "~2.4.5",
72
- "@fluid-internal/mocha-test-setup": "2.113.0-411909",
72
+ "@fluid-internal/mocha-test-setup": "~2.114.0",
73
73
  "@fluid-tools/build-cli": "^0.65.0",
74
74
  "@fluidframework/build-common": "^2.0.3",
75
75
  "@fluidframework/build-tools": "^0.65.0",
@@ -87,7 +87,7 @@
87
87
  "tasks": {
88
88
  "eslint": [
89
89
  "^build:esnext",
90
- "^api-extractor:esnext"
90
+ "^build:entrypoints:esm"
91
91
  ]
92
92
  }
93
93
  },
@@ -95,9 +95,6 @@
95
95
  "disabled": true
96
96
  },
97
97
  "scripts": {
98
- "api": "fluid-build . --task api",
99
- "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyAlpha legacy.alpha --outDir ./dist",
100
- "api-extractor:esnext": "flub generate entrypoints --outFileLegacyAlpha legacy.alpha --outDir ./lib",
101
98
  "build": "fluid-build . --task build",
102
99
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
103
100
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
@@ -105,6 +102,9 @@
105
102
  "build:commonjs": "fluid-build . --task commonjs",
106
103
  "build:compile": "fluid-build . --task compile",
107
104
  "build:docs": "api-extractor run --local",
105
+ "build:entrypoints": "fluid-build . --task build:entrypoints",
106
+ "build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyAlpha legacy.alpha --outDir ./dist",
107
+ "build:entrypoints:esm": "flub generate entrypoints --outFileLegacyAlpha legacy.alpha --outDir ./lib",
108
108
  "build:esnext": "tsc --project ./tsconfig.json",
109
109
  "check:are-the-types-wrong": "attw --pack . --profile node16",
110
110
  "check:biome": "biome check .",