@fluidframework/datastore-definitions 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 (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @fluidframework/datastore-definitions
2
2
 
3
+ ## 2.114.0
4
+
5
+ Dependency updates only.
6
+
7
+ ## 2.113.0
8
+
9
+ Dependency updates only.
10
+
3
11
  ## 2.112.0
4
12
 
5
13
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/datastore-definitions",
3
- "version": "2.113.0-411909",
3
+ "version": "2.114.0",
4
4
  "description": "Fluid data store definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -49,11 +49,11 @@
49
49
  "main": "",
50
50
  "types": "lib/public.d.ts",
51
51
  "dependencies": {
52
- "@fluidframework/container-definitions": "2.113.0-411909",
53
- "@fluidframework/core-interfaces": "2.113.0-411909",
54
- "@fluidframework/driver-definitions": "2.113.0-411909",
55
- "@fluidframework/id-compressor": "2.113.0-411909",
56
- "@fluidframework/runtime-definitions": "2.113.0-411909"
52
+ "@fluidframework/container-definitions": "~2.114.0",
53
+ "@fluidframework/core-interfaces": "~2.114.0",
54
+ "@fluidframework/driver-definitions": "~2.114.0",
55
+ "@fluidframework/id-compressor": "~2.114.0",
56
+ "@fluidframework/runtime-definitions": "~2.114.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@arethetypeswrong/cli": "^0.18.2",
@@ -61,7 +61,7 @@
61
61
  "@fluid-tools/build-cli": "^0.65.0",
62
62
  "@fluidframework/build-common": "^2.0.3",
63
63
  "@fluidframework/build-tools": "^0.65.0",
64
- "@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.111.0",
64
+ "@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.112.0",
65
65
  "@fluidframework/eslint-config-fluid": "^13.0.0",
66
66
  "@microsoft/api-extractor": "7.58.1",
67
67
  "concurrently": "^10.0.3",
@@ -76,17 +76,17 @@
76
76
  "entrypoint": "legacy"
77
77
  },
78
78
  "scripts": {
79
- "api": "fluid-build . --task api",
80
- "api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outFileLegacyAlpha legacyAlpha --outDir ./dist",
81
- "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outFileLegacyAlpha legacyAlpha --outDir ./lib --node10TypeCompat",
82
79
  "build": "fluid-build . --task build",
83
80
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
84
81
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
85
82
  "build:api-reports:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
86
83
  "build:compile": "fluid-build . --task compile",
87
84
  "build:docs": "api-extractor run --local",
85
+ "build:entrypoints": "fluid-build . --task build:entrypoints",
86
+ "build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outFileLegacyAlpha legacyAlpha --outDir ./dist",
87
+ "build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outFileLegacyAlpha legacyAlpha --outDir ./lib --node10TypeCompat",
88
88
  "build:esnext": "tsc --project ./tsconfig.json",
89
- "build:test": "npm run build:test:esm && npm run build:test:cjs",
89
+ "build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
90
90
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
91
91
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
92
92
  "check:are-the-types-wrong": "attw --pack .",