Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions azure/packages/azure-local-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"type": "module",
"bin": "index.js",
"scripts": {
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
"eslint": "eslint --format stylish index.js",
"eslint:fix": "eslint --format stylish index.js --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"format": "npm run biome-format",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"start": "pm2 start -n azure-local-service index.js",
Expand Down
50 changes: 25 additions & 25 deletions azure/packages/azure-service-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,41 +48,41 @@
"types": "lib/public.d.ts",
"scripts": {
"api": "fluid-build . --task api",
"api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
"api-extractor": "api-extractor run --local",
"api-extractor-ci-api-reports-current": "api-extractor run --config api-extractor/api-extractor.current.json",
"api-extractor-ci-api-reports-legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
"api-extractor-ci-docs": "api-extractor run",
"api-extractor-exports-bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
"api-extractor-exports-cjs-legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
"api-extractor-exports-cjs-public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
"api-extractor-exports-esm-legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
"api-extractor-exports-esm-public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
"api-reports-current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
"api-reports-legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
"attw": "attw --pack .",
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
"build:api-reports:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
"build:api-reports": "concurrently \"npm:api-reports-*\"",
"build:commonjs": "fluid-build . --task commonjs",
"build:compile": "fluid-build . --task compile",
"build:docs": "api-extractor run --local",
"build:esnext": "tsc --project ./tsconfig.json",
"build:test": "npm run build:test:esm && npm run build:test:cjs",
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
"check:are-the-types-wrong": "attw --pack .",
"check:biome": "biome check .",
"check:exports": "concurrently \"npm:check:exports:*\"",
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
"check:format": "npm run check:biome",
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
"ci:build:docs": "api-extractor run",
"build:test": "npm run tsc-test-esm && npm run tsc-test-cjs",
"check:exports": "concurrently \"npm:api-extractor-exports-bundle-release-*\"",
"check:format": "npm run biome-check",
"ci:build:api-reports": "concurrently \"npm:api-extractor-ci-api-reports-*\"",
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"generate-entrypoints-commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
"generate-entrypoints-esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
"tsc-test-cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
"tsc-test-esm": "tsc --project ./src/test/tsconfig.json",
"typetests:gen": "flub generate typetests --dir . -v",
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
},
Expand Down
10 changes: 5 additions & 5 deletions examples/apps/ai-collab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"sideEffects": false,
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib next-env.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"start": "next dev",
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/blobs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
Expand All @@ -37,7 +38,6 @@
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/collaborative-textarea/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve --config webpack.config.cjs",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/contact-collection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
14 changes: 7 additions & 7 deletions examples/apps/data-object-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"copyfiles": "copyfiles -u 1 \"src/**/*.css\" lib/",
"dev": "npm run webpack:dev",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/presence-tracker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run jest:verbose",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
Expand All @@ -32,7 +33,6 @@
"test": "npm run test:jest",
"test:jest": "cross-env logger__level=crit start-server-and-test tinylicious 7070 test:jest:run",
"test:jest:run": "jest --ci --detectOpenHandles",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:jest:verbose",
"tinylicious": "tinylicious",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/staging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/task-selection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
16 changes: 8 additions & 8 deletions examples/apps/tree-cli-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@
"type": "module",
"scripts": {
"app": "node ./lib/index.js",
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"build:test": "npm run build:test:esm",
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"build:test": "npm run tsc-test-esm",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"test": "npm run test:mocha",
"test:mocha": "npm run test:mocha:esm",
"test:mocha:esm": "mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc-test-esm": "tsc --project ./src/test/tsconfig.json"
},
"dependencies": {
"@fluidframework/core-interfaces": "workspace:~",
Expand Down
12 changes: 6 additions & 6 deletions examples/apps/tree-comparison/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"biome-check": "biome check .",
"biome-format": "biome check . --write",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:format": "npm run biome-check",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"esnext": "tsc --project ./tsconfig.json",
"format": "npm run biome-format",
"jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"prepack": "npm run webpack",
"start": "webpack serve",
"start:test": "webpack serve --config webpack.test.cjs",
"test": "npm run test:jest",
"test:jest": "jest --ci",
"test:jest:verbose": "cross-env FLUID_TEST_VERBOSE=1 jest --ci",
"webpack": "webpack --env production",
"webpack:dev": "webpack --env development"
},
Expand Down
Loading
Loading