@fluidframework/synthesize 2.113.1 → 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 (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/synthesize
2
2
 
3
+ ## 2.114.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.113.0
4
8
 
5
9
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/synthesize",
3
- "version": "2.113.1",
3
+ "version": "2.114.0",
4
4
  "description": "A library for synthesizing scope objects.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -69,20 +69,20 @@
69
69
  "temp-directory": "nyc/.nyc_output"
70
70
  },
71
71
  "dependencies": {
72
- "@fluidframework/core-utils": "~2.113.1"
72
+ "@fluidframework/core-utils": "~2.114.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@arethetypeswrong/cli": "^0.18.2",
76
76
  "@biomejs/biome": "~2.4.5",
77
- "@fluid-internal/mocha-test-setup": "~2.113.1",
77
+ "@fluid-internal/mocha-test-setup": "~2.114.0",
78
78
  "@fluid-tools/build-cli": "^0.65.0",
79
79
  "@fluidframework/build-common": "^2.0.3",
80
80
  "@fluidframework/build-tools": "^0.65.0",
81
- "@fluidframework/core-interfaces": "~2.113.1",
82
- "@fluidframework/datastore": "~2.113.1",
81
+ "@fluidframework/core-interfaces": "~2.114.0",
82
+ "@fluidframework/datastore": "~2.114.0",
83
83
  "@fluidframework/eslint-config-fluid": "^13.0.0",
84
- "@fluidframework/runtime-utils": "~2.113.1",
85
- "@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.111.0",
84
+ "@fluidframework/runtime-utils": "~2.114.0",
85
+ "@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.112.0",
86
86
  "@microsoft/api-extractor": "7.58.1",
87
87
  "@types/mocha": "^10.0.10",
88
88
  "@types/node": "~22.19.17",
@@ -102,9 +102,6 @@
102
102
  "entrypoint": "legacy"
103
103
  },
104
104
  "scripts": {
105
- "api": "fluid-build . --task api",
106
- "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
107
- "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
108
105
  "build": "fluid-build . --task build",
109
106
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
110
107
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
@@ -112,8 +109,11 @@
112
109
  "build:commonjs": "fluid-build . --task commonjs",
113
110
  "build:compile": "fluid-build . --task compile",
114
111
  "build:docs": "api-extractor run --local",
112
+ "build:entrypoints": "fluid-build . --task build:entrypoints",
113
+ "build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
114
+ "build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
115
115
  "build:esnext": "tsc --project ./tsconfig.json",
116
- "build:test": "npm run build:test:esm && npm run build:test:cjs",
116
+ "build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
117
117
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
118
118
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
119
119
  "check:are-the-types-wrong": "attw --pack .",