@fluidframework/map 2.0.0-dev.3.1.0.125672 → 2.0.0-dev.4.2.0.153917
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.
- package/CHANGELOG.md +5 -0
- package/README.md +20 -0
- package/dist/directory.d.ts +27 -0
- package/dist/directory.d.ts.map +1 -1
- package/dist/directory.js +227 -62
- package/dist/directory.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/directory.d.ts +27 -0
- package/lib/directory.d.ts.map +1 -1
- package/lib/directory.js +227 -62
- package/lib/directory.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +58 -60
- package/src/directory.ts +315 -60
- package/src/index.ts +1 -0
- package/src/packageVersion.ts +1 -1
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,qBAAqB,CAAC;AAC7C,MAAM,CAAC,MAAM,UAAU,GAAG,wBAAwB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/map\";\nexport const pkgVersion = \"2.0.0-dev.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,qBAAqB,CAAC;AAC7C,MAAM,CAAC,MAAM,UAAU,GAAG,wBAAwB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/map\";\nexport const pkgVersion = \"2.0.0-dev.4.2.0.153917\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/map",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.4.2.0.153917",
|
|
4
4
|
"description": "Distributed map",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,36 +14,6 @@
|
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"module": "lib/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
19
|
-
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
|
|
20
|
-
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
21
|
-
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
22
|
-
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
23
|
-
"build:full": "npm run build",
|
|
24
|
-
"build:full:compile": "npm run build:compile",
|
|
25
|
-
"build:genver": "gen-version",
|
|
26
|
-
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
27
|
-
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
28
|
-
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
29
|
-
"eslint": "eslint --format stylish src",
|
|
30
|
-
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
31
|
-
"format": "npm run prettier:fix",
|
|
32
|
-
"lint": "npm run prettier && npm run eslint",
|
|
33
|
-
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
34
|
-
"postpack": "tar -cf ./map.test-files.tar ./src/test ./dist/test",
|
|
35
|
-
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
36
|
-
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
37
|
-
"test": "npm run test:mocha",
|
|
38
|
-
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
|
|
39
|
-
"test:memory": "mocha --config ./src/test/memory/.mocharc.js",
|
|
40
|
-
"test:memory-profiling:report": "mocha --config ./src/test/memory/.mocharc.js",
|
|
41
|
-
"test:mocha": "mocha --unhandled-rejections=strict --recursive 'dist/test/mocha/**/*.spec.js' -r node_modules/@fluidframework/mocha-test-setup --exit",
|
|
42
|
-
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
43
|
-
"tsc": "tsc",
|
|
44
|
-
"typetests:gen": "flub generate typetests --generate --dir .",
|
|
45
|
-
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
46
|
-
},
|
|
47
17
|
"nyc": {
|
|
48
18
|
"all": true,
|
|
49
19
|
"cache-dir": "nyc/.cache",
|
|
@@ -66,48 +36,76 @@
|
|
|
66
36
|
},
|
|
67
37
|
"dependencies": {
|
|
68
38
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
69
|
-
"@fluidframework/common-utils": "^1.
|
|
70
|
-
"@fluidframework/container-utils": "
|
|
71
|
-
"@fluidframework/core-interfaces": "
|
|
72
|
-
"@fluidframework/datastore-definitions": "
|
|
73
|
-
"@fluidframework/driver-utils": "
|
|
39
|
+
"@fluidframework/common-utils": "^1.1.1",
|
|
40
|
+
"@fluidframework/container-utils": "2.0.0-dev.4.2.0.153917",
|
|
41
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.4.2.0.153917",
|
|
42
|
+
"@fluidframework/datastore-definitions": "2.0.0-dev.4.2.0.153917",
|
|
43
|
+
"@fluidframework/driver-utils": "2.0.0-dev.4.2.0.153917",
|
|
74
44
|
"@fluidframework/protocol-definitions": "^1.1.0",
|
|
75
|
-
"@fluidframework/runtime-definitions": "
|
|
76
|
-
"@fluidframework/runtime-utils": "
|
|
77
|
-
"@fluidframework/shared-object-base": "
|
|
45
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev.4.2.0.153917",
|
|
46
|
+
"@fluidframework/runtime-utils": "2.0.0-dev.4.2.0.153917",
|
|
47
|
+
"@fluidframework/shared-object-base": "2.0.0-dev.4.2.0.153917",
|
|
78
48
|
"path-browserify": "^1.0.1"
|
|
79
49
|
},
|
|
80
50
|
"devDependencies": {
|
|
81
|
-
"@fluid-internal/stochastic-test-utils": "
|
|
82
|
-
"@fluid-internal/test-dds-utils": "
|
|
83
|
-
"@fluid-tools/benchmark": "^0.
|
|
84
|
-
"@fluid-tools/build-cli": "^0.
|
|
51
|
+
"@fluid-internal/stochastic-test-utils": "2.0.0-dev.4.2.0.153917",
|
|
52
|
+
"@fluid-internal/test-dds-utils": "2.0.0-dev.4.2.0.153917",
|
|
53
|
+
"@fluid-tools/benchmark": "^0.47.0",
|
|
54
|
+
"@fluid-tools/build-cli": "^0.15.0",
|
|
85
55
|
"@fluidframework/build-common": "^1.1.0",
|
|
86
|
-
"@fluidframework/build-tools": "^0.
|
|
56
|
+
"@fluidframework/build-tools": "^0.15.0",
|
|
87
57
|
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
88
|
-
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.
|
|
89
|
-
"@fluidframework/mocha-test-setup": "
|
|
90
|
-
"@fluidframework/test-runtime-utils": "
|
|
91
|
-
"@microsoft/api-extractor": "^7.
|
|
92
|
-
"@rushstack/eslint-config": "^2.5.1",
|
|
58
|
+
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.4.0.0",
|
|
59
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.4.2.0.153917",
|
|
60
|
+
"@fluidframework/test-runtime-utils": "2.0.0-dev.4.2.0.153917",
|
|
61
|
+
"@microsoft/api-extractor": "^7.34.4",
|
|
93
62
|
"@types/mocha": "^9.1.1",
|
|
94
|
-
"@types/node": "^14.18.
|
|
63
|
+
"@types/node": "^14.18.38",
|
|
95
64
|
"@types/path-browserify": "^1.0.0",
|
|
96
|
-
"concurrently": "^6.
|
|
65
|
+
"concurrently": "^7.6.0",
|
|
97
66
|
"copyfiles": "^2.4.1",
|
|
98
|
-
"cross-env": "^7.0.
|
|
67
|
+
"cross-env": "^7.0.3",
|
|
99
68
|
"eslint": "~8.6.0",
|
|
100
|
-
"mocha": "^10.
|
|
101
|
-
"
|
|
69
|
+
"mocha": "^10.2.0",
|
|
70
|
+
"mocha-json-output-reporter": "^2.0.1",
|
|
71
|
+
"mocha-multi-reporters": "^1.5.1",
|
|
72
|
+
"moment": "^2.21.0",
|
|
73
|
+
"nyc": "^15.1.0",
|
|
102
74
|
"prettier": "~2.6.2",
|
|
103
|
-
"rimraf": "^
|
|
75
|
+
"rimraf": "^4.4.0",
|
|
104
76
|
"typescript": "~4.5.5"
|
|
105
77
|
},
|
|
106
78
|
"typeValidation": {
|
|
107
|
-
"version": "2.0.0-internal.3.1.0",
|
|
108
|
-
"previousVersionStyle": "~previousMinor",
|
|
109
|
-
"baselineRange": ">=2.0.0-internal.3.0.0 <2.0.0-internal.3.1.0",
|
|
110
|
-
"baselineVersion": "2.0.0-internal.3.0.0",
|
|
111
79
|
"broken": {}
|
|
80
|
+
},
|
|
81
|
+
"scripts": {
|
|
82
|
+
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
83
|
+
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
|
|
84
|
+
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
85
|
+
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
86
|
+
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
87
|
+
"build:full": "npm run build",
|
|
88
|
+
"build:full:compile": "npm run build:compile",
|
|
89
|
+
"build:genver": "gen-version",
|
|
90
|
+
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
91
|
+
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
92
|
+
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
93
|
+
"eslint": "eslint --format stylish src",
|
|
94
|
+
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
95
|
+
"format": "npm run prettier:fix",
|
|
96
|
+
"lint": "npm run prettier && npm run eslint",
|
|
97
|
+
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
98
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
99
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
100
|
+
"test": "npm run test:mocha",
|
|
101
|
+
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
|
|
102
|
+
"test:memory": "mocha --config ./src/test/memory/.mocharc.js",
|
|
103
|
+
"test:memory-profiling:report": "mocha --config ./src/test/memory/.mocharc.js",
|
|
104
|
+
"test:mocha": "mocha --unhandled-rejections=strict --recursive 'dist/test/mocha/**/*.spec.js' -r node_modules/@fluidframework/mocha-test-setup --exit",
|
|
105
|
+
"test:mocha:multireport": "cross-env FLUID_TEST_MULTIREPORT=1 npm run test:mocha",
|
|
106
|
+
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
107
|
+
"tsc": "tsc",
|
|
108
|
+
"typetests:gen": "fluid-type-test-generator",
|
|
109
|
+
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
112
110
|
}
|
|
113
|
-
}
|
|
111
|
+
}
|