-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] output formatting (mis)matches
- Loading branch information
1 parent
e57dbd6
commit b026772
Showing
9 changed files
with
321 additions
and
233 deletions.
There are no files selected for viewing
236 changes: 118 additions & 118 deletions
236
fixtures/fluid-framework/experimental/PropertyDDS/packages/property-binder/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,120 +1,120 @@ | ||
{ | ||
"name": "@fluid-experimental/property-binder", | ||
"version": "2.2.0-rc.1.1.2", | ||
"description": "Data Binder for Fluid PropertyDDS", | ||
"keywords": [], | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "experimental/PropertyDDS/packages/property-binder" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
} | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"files": [ | ||
"dist/**/*", | ||
"lib/**/*", | ||
"dist/index.d.ts" | ||
], | ||
"scripts": { | ||
"build": "fluid-build . --task build", | ||
"postbuild": "npm run gen:tscdef", | ||
"build:commonjs": "fluid-build . --task commonjs", | ||
"build:compile": "fluid-build . --task compile", | ||
"build:esnext": "tsc --project ./tsconfig.json", | ||
"build:test": "npm run build:test:cjs", | ||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.json", | ||
"check:are-the-types-wrong": "attw --pack .", | ||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore", | ||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc", | ||
"doc": "cross-var appfw-typedoc $npm_package_name", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "fluid-build --task format .", | ||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore", | ||
"lint": "fluid-build . --task lint", | ||
"lint:fix": "fluid-build . --task eslint:fix --task format", | ||
"precit": "bash -c \"npm run test -- --reporters dots; echo '----------Linting----------'; npm run lint; echo '----------Docs----------'; npm run doc\"", | ||
"prepublishOnly": "npm run test:dist", | ||
"test": "npm run test:jest", | ||
"pretest:coverage": "rimraf --glob coverage/", | ||
"test:coverage": "c8 npm test", | ||
"test:jest": "jest", | ||
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist" | ||
}, | ||
"c8": { | ||
"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": { | ||
"@fluid-experimental/property-changeset": "workspace:~", | ||
"@fluid-experimental/property-dds": "workspace:~", | ||
"@fluid-experimental/property-properties": "workspace:~", | ||
"lodash": "^4.1.0", | ||
"underscore": "^1.2.1" | ||
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.1.0", | ||
"@babel/core": "^7.1.0", | ||
"@babel/eslint-parser": "^7.1.1", | ||
"@babel/plugin-proposal-decorators": "^7.1.1", | ||
"@biomejs/biome": "^1.1.1", | ||
"@fluidframework/build-common": "^2.0.1", | ||
"@fluidframework/build-tools": "^0.1.1", | ||
"@fluidframework/test-runtime-utils": "workspace:~", | ||
"@types/jest": "29.0.1", | ||
"@types/lodash": "^4.1.0", | ||
"@types/node": "^18.0.2", | ||
"@types/underscore": "^1.0.1", | ||
"async": "^3.2.2", | ||
"body-parser": "^1.1.1", | ||
"c8": "^8.2.1", | ||
"chai": "^4.0.0", | ||
"copyfiles": "^2.0.1", | ||
"eslint": "~8.1.0", | ||
"jest": "^29.1.1", | ||
"jest-junit": "^10.1.2", | ||
"jsdoc": "3.1.2", | ||
"prettier": "~3.1.1", | ||
"rimraf": "^4.1.1", | ||
"source-map-loader": "^2.1.1", | ||
"typedoc": "^0.1.1", | ||
"typescript": "~5.1.2", | ||
"webpack": "^5.1.1" | ||
}, | ||
"typeValidation": { | ||
"disabled": true, | ||
"broken": {} | ||
} | ||
"name": "@fluid-experimental/property-binder", | ||
"description": "Data Binder for Fluid PropertyDDS", | ||
"version": "2.2.0-rc.1.1.2", | ||
"author": "Microsoft and contributors", | ||
"c8": { | ||
"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": { | ||
"@fluid-experimental/property-changeset": "workspace:~", | ||
"@fluid-experimental/property-dds": "workspace:~", | ||
"@fluid-experimental/property-properties": "workspace:~", | ||
"lodash": "^4.1.0", | ||
"underscore": "^1.2.1" | ||
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.1.0", | ||
"@babel/core": "^7.1.0", | ||
"@babel/eslint-parser": "^7.1.1", | ||
"@babel/plugin-proposal-decorators": "^7.1.1", | ||
"@biomejs/biome": "^1.1.1", | ||
"@fluidframework/build-common": "^2.0.1", | ||
"@fluidframework/build-tools": "^0.1.1", | ||
"@fluidframework/test-runtime-utils": "workspace:~", | ||
"@types/jest": "29.0.1", | ||
"@types/lodash": "^4.1.0", | ||
"@types/node": "^18.0.2", | ||
"@types/underscore": "^1.0.1", | ||
"async": "^3.2.2", | ||
"body-parser": "^1.1.1", | ||
"c8": "^8.2.1", | ||
"chai": "^4.0.0", | ||
"copyfiles": "^2.0.1", | ||
"eslint": "~8.1.0", | ||
"jest": "^29.1.1", | ||
"jest-junit": "^10.1.2", | ||
"jsdoc": "3.1.2", | ||
"prettier": "~3.1.1", | ||
"rimraf": "^4.1.1", | ||
"source-map-loader": "^2.1.1", | ||
"typedoc": "^0.1.1", | ||
"typescript": "~5.1.2", | ||
"webpack": "^5.1.1" | ||
}, | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
} | ||
} | ||
}, | ||
"files": [ | ||
"dist/**/*", | ||
"lib/**/*", | ||
"dist/index.d.ts" | ||
], | ||
"homepage": "https://fluidframework.com", | ||
"keywords": [], | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "experimental/PropertyDDS/packages/property-binder" | ||
}, | ||
"scripts": { | ||
"build": "fluid-build . --task build", | ||
"build:commonjs": "fluid-build . --task commonjs", | ||
"build:compile": "fluid-build . --task compile", | ||
"build:esnext": "tsc --project ./tsconfig.json", | ||
"build:test": "npm run build:test:cjs", | ||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.json", | ||
"check:are-the-types-wrong": "attw --pack .", | ||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore", | ||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc", | ||
"doc": "cross-var appfw-typedoc $npm_package_name", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "fluid-build --task format .", | ||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore", | ||
"lint": "fluid-build . --task lint", | ||
"lint:fix": "fluid-build . --task eslint:fix --task format", | ||
"postbuild": "npm run gen:tscdef", | ||
"precit": "bash -c \"npm run test -- --reporters dots; echo '----------Linting----------'; npm run lint; echo '----------Docs----------'; npm run doc\"", | ||
"prepublishOnly": "npm run test:dist", | ||
"pretest:coverage": "rimraf --glob coverage/", | ||
"test": "npm run test:jest", | ||
"test:coverage": "c8 npm test", | ||
"test:jest": "jest", | ||
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist" | ||
}, | ||
"type": "module", | ||
"types": "lib/index.d.ts", | ||
"typeValidation": { | ||
"disabled": true, | ||
"broken": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.