@fluidframework/core-utils 2.0.0-internal.5.3.2 → 2.0.0-internal.6.0.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 +12 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @fluidframework/core-utils
2
2
 
3
+ ## 2.0.0-internal.6.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
8
+
9
+ Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
10
+
11
+ ## 2.0.0-internal.5.4.0
12
+
13
+ Dependency updates only.
14
+
3
15
  ## 2.0.0-internal.5.3.0
4
16
 
5
17
  Dependency updates only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-utils",
3
- "version": "2.0.0-internal.5.3.2",
3
+ "version": "2.0.0-internal.6.0.0",
4
4
  "description": "Not intended for use outside the Fluid client repo.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -35,15 +35,15 @@
35
35
  "temp-directory": "nyc/.nyc_output"
36
36
  },
37
37
  "devDependencies": {
38
- "@fluid-tools/benchmark": "^0.48.0",
38
+ "@fluid-tools/benchmark": "^0.47.0",
39
39
  "@fluid-tools/build-cli": "^0.21.0",
40
- "@fluidframework/build-common": "^1.2.0",
40
+ "@fluidframework/build-common": "^2.0.0",
41
41
  "@fluidframework/build-tools": "^0.21.0",
42
42
  "@fluidframework/eslint-config-fluid": "^2.0.0",
43
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.5.3.2 <2.0.0-internal.5.4.0",
43
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.0.0 <2.0.0-internal.6.1.0",
44
44
  "@microsoft/api-extractor": "^7.34.4",
45
45
  "@types/mocha": "^9.1.1",
46
- "@types/node": "^14.18.38",
46
+ "@types/node": "^16.18.38",
47
47
  "@types/sinon": "^7.0.13",
48
48
  "concurrently": "^7.6.0",
49
49
  "copyfiles": "^2.4.1",
@@ -75,7 +75,7 @@
75
75
  "build:esnext": "tsc --project ./tsconfig.esnext.json",
76
76
  "build:test": "tsc --project ./src/test/tsconfig.json",
77
77
  "ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
78
- "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
78
+ "clean": "rimraf --glob \"dist\" \"lib\" \"*.tsbuildinfo\" \"*.build.log\"",
79
79
  "eslint": "eslint --format stylish src",
80
80
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
81
81
  "format": "npm run prettier:fix",