@fluidframework/container-utils
Advanced tools
Comparing version 2.0.0-internal.3.1.0 to 2.0.0-internal.3.2.0
@@ -8,3 +8,3 @@ /*! | ||
export declare const pkgName = "@fluidframework/container-utils"; | ||
export declare const pkgVersion = "2.0.0-internal.3.1.0"; | ||
export declare const pkgVersion = "2.0.0-internal.3.2.0"; | ||
//# sourceMappingURL=packageVersion.d.ts.map |
@@ -11,3 +11,3 @@ "use strict"; | ||
exports.pkgName = "@fluidframework/container-utils"; | ||
exports.pkgVersion = "2.0.0-internal.3.1.0"; | ||
exports.pkgVersion = "2.0.0-internal.3.2.0"; | ||
//# sourceMappingURL=packageVersion.js.map |
@@ -8,3 +8,3 @@ /*! | ||
export declare const pkgName = "@fluidframework/container-utils"; | ||
export declare const pkgVersion = "2.0.0-internal.3.1.0"; | ||
export declare const pkgVersion = "2.0.0-internal.3.2.0"; | ||
//# sourceMappingURL=packageVersion.d.ts.map |
@@ -8,3 +8,3 @@ /*! | ||
export const pkgName = "@fluidframework/container-utils"; | ||
export const pkgVersion = "2.0.0-internal.3.1.0"; | ||
export const pkgVersion = "2.0.0-internal.3.2.0"; | ||
//# sourceMappingURL=packageVersion.js.map |
200
package.json
{ | ||
"name": "@fluidframework/container-utils", | ||
"version": "2.0.0-internal.3.1.0", | ||
"description": "Fluid container utils", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "packages/loader/container-utils" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"sideEffects": false, | ||
"main": "dist/index.js", | ||
"module": "lib/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs", | ||
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test", | ||
"build:compile": "concurrently npm:build:commonjs npm:build:esnext", | ||
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/", | ||
"build:esnext": "tsc --project ./tsconfig.esnext.json", | ||
"build:full": "npm run build", | ||
"build:full:compile": "npm run build:compile", | ||
"build:genver": "gen-version", | ||
"build:test": "tsc --project ./src/test/tsconfig.json", | ||
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/", | ||
"clean": "rimraf dist lib *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run prettier && npm run eslint", | ||
"lint:fix": "npm run prettier:fix && npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore", | ||
"test": "npm run test:mocha", | ||
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml", | ||
"test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict", | ||
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha", | ||
"tsc": "tsc", | ||
"tsc:watch": "tsc --watch", | ||
"typetests:gen": "flub generate typetests --generate --dir .", | ||
"typetests:prepare": "flub generate typetests --prepare --dir . --pin" | ||
}, | ||
"nyc": { | ||
"all": true, | ||
"cache-dir": "nyc/.cache", | ||
"exclude": [ | ||
"src/test/**/*.ts", | ||
"dist/test/**/*.js" | ||
], | ||
"exclude-after-remap": false, | ||
"include": [ | ||
"src/**/*.ts", | ||
"dist/**/*.js" | ||
], | ||
"report-dir": "nyc/report", | ||
"reporter": [ | ||
"cobertura", | ||
"html", | ||
"text" | ||
], | ||
"temp-directory": "nyc/.nyc_output" | ||
}, | ||
"dependencies": { | ||
"@fluidframework/common-definitions": "^0.20.1", | ||
"@fluidframework/common-utils": "^1.0.0", | ||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0", | ||
"@fluidframework/protocol-definitions": "^1.1.0", | ||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@fluid-tools/build-cli": "^0.9.0", | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/build-tools": "^0.9.0", | ||
"@fluidframework/container-utils-previous": "npm:@fluidframework/container-utils@2.0.0-internal.3.0.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0", | ||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.1.0 <2.0.0-internal.4.0.0", | ||
"@microsoft/api-extractor": "^7.22.2", | ||
"@rushstack/eslint-config": "^2.5.1", | ||
"@types/mocha": "^9.1.1", | ||
"@types/node": "^14.18.36", | ||
"concurrently": "^6.2.0", | ||
"copyfiles": "^2.4.1", | ||
"cross-env": "^7.0.2", | ||
"eslint": "~8.6.0", | ||
"mocha": "^10.0.0", | ||
"nyc": "^15.0.0", | ||
"prettier": "~2.6.2", | ||
"rimraf": "^2.6.2", | ||
"typescript": "~4.5.5" | ||
}, | ||
"typeValidation": { | ||
"version": "2.0.0-internal.3.1.0", | ||
"previousVersionStyle": "~previousMinor", | ||
"baselineRange": ">=2.0.0-internal.3.0.0 <2.0.0-internal.3.1.0", | ||
"baselineVersion": "2.0.0-internal.3.0.0", | ||
"broken": {} | ||
} | ||
} | ||
"name": "@fluidframework/container-utils", | ||
"version": "2.0.0-internal.3.2.0", | ||
"description": "Fluid container utils", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "packages/loader/container-utils" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"sideEffects": false, | ||
"main": "dist/index.js", | ||
"module": "lib/index.js", | ||
"types": "dist/index.d.ts", | ||
"nyc": { | ||
"all": true, | ||
"cache-dir": "nyc/.cache", | ||
"exclude": [ | ||
"src/test/**/*.ts", | ||
"dist/test/**/*.js" | ||
], | ||
"exclude-after-remap": false, | ||
"include": [ | ||
"src/**/*.ts", | ||
"dist/**/*.js" | ||
], | ||
"report-dir": "nyc/report", | ||
"reporter": [ | ||
"cobertura", | ||
"html", | ||
"text" | ||
], | ||
"temp-directory": "nyc/.nyc_output" | ||
}, | ||
"dependencies": { | ||
"@fluidframework/common-definitions": "^0.20.1", | ||
"@fluidframework/common-utils": "^1.1.1", | ||
"@fluidframework/container-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0", | ||
"@fluidframework/protocol-definitions": "^1.1.0", | ||
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@fluid-tools/build-cli": "^0.10.0", | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/build-tools": "^0.10.0", | ||
"@fluidframework/container-utils-previous": "npm:@fluidframework/container-utils@2.0.0-internal.3.1.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0", | ||
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0", | ||
"@microsoft/api-extractor": "^7.22.2", | ||
"@rushstack/eslint-config": "^2.5.1", | ||
"@types/mocha": "^9.1.1", | ||
"@types/node": "^14.18.36", | ||
"concurrently": "^6.2.0", | ||
"copyfiles": "^2.4.1", | ||
"cross-env": "^7.0.2", | ||
"eslint": "~8.6.0", | ||
"mocha": "^10.0.0", | ||
"nyc": "^15.0.0", | ||
"prettier": "~2.6.2", | ||
"rimraf": "^2.6.2", | ||
"typescript": "~4.5.5" | ||
}, | ||
"typeValidation": { | ||
"version": "2.0.0-internal.3.2.0", | ||
"previousVersionStyle": "~previousMinor", | ||
"baselineRange": ">=2.0.0-internal.3.1.0 <2.0.0-internal.3.2.0", | ||
"baselineVersion": "2.0.0-internal.3.1.0", | ||
"broken": {} | ||
}, | ||
"scripts": { | ||
"build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs", | ||
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test", | ||
"build:compile": "concurrently npm:build:commonjs npm:build:esnext", | ||
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/", | ||
"build:esnext": "tsc --project ./tsconfig.esnext.json", | ||
"build:full": "npm run build", | ||
"build:full:compile": "npm run build:compile", | ||
"build:genver": "gen-version", | ||
"build:test": "tsc --project ./src/test/tsconfig.json", | ||
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/", | ||
"clean": "rimraf dist lib *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run prettier && npm run eslint", | ||
"lint:fix": "npm run prettier:fix && npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore", | ||
"test": "npm run test:mocha", | ||
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml", | ||
"test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict", | ||
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha", | ||
"tsc": "tsc", | ||
"tsc:watch": "tsc --watch", | ||
"typetests:gen": "flub generate typetests --generate --dir .", | ||
"typetests:prepare": "flub generate typetests --prepare --dir . --pin" | ||
} | ||
} |
@@ -9,2 +9,2 @@ /*! | ||
export const pkgName = "@fluidframework/container-utils"; | ||
export const pkgVersion = "2.0.0-internal.3.1.0"; | ||
export const pkgVersion = "2.0.0-internal.3.2.0"; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68345