@fluid-experimental/attributor
Advanced tools
+4
-0
| # @fluid-experimental/attributor | ||
| ## 2.81.0 | ||
| Dependency updates only. | ||
| ## 2.80.0 | ||
@@ -4,0 +8,0 @@ |
+4
-27
@@ -1,6 +0,6 @@ | ||
| /* eslint-disable */ | ||
| /** | ||
| * GENERATED FILE - DO NOT EDIT DIRECTLY. | ||
| * To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript | ||
| /*! | ||
| * Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| import type { Linter } from "eslint"; | ||
@@ -12,25 +12,2 @@ import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts"; | ||
| { | ||
| rules: { | ||
| "@typescript-eslint/consistent-type-imports": [ | ||
| "error", | ||
| { | ||
| "fixStyle": "inline-type-imports", | ||
| }, | ||
| ], | ||
| "@typescript-eslint/no-import-type-side-effects": "error", | ||
| }, | ||
| }, | ||
| { | ||
| files: ["**/*.{ts,tsx}"], | ||
| ignores: ["**/src/test/**", "**/tests/**", "**/*.spec.ts", "**/*.test.ts"], | ||
| rules: { | ||
| "@typescript-eslint/consistent-type-exports": [ | ||
| "error", | ||
| { | ||
| "fixMixedExportsWithInlineTypeSpecifier": true, | ||
| }, | ||
| ], | ||
| }, | ||
| }, | ||
| { | ||
| files: ["*.spec.ts", "src/test/**"], | ||
@@ -37,0 +14,0 @@ rules: { |
+21
-21
| { | ||
| "name": "@fluid-experimental/attributor", | ||
| "version": "2.80.0", | ||
| "version": "2.81.0", | ||
| "description": "Operation attributor", | ||
@@ -52,14 +52,14 @@ "homepage": "https://fluidframework.com", | ||
| "dependencies": { | ||
| "@fluid-internal/client-utils": "~2.80.0", | ||
| "@fluidframework/container-definitions": "~2.80.0", | ||
| "@fluidframework/container-runtime": "~2.80.0", | ||
| "@fluidframework/container-runtime-definitions": "~2.80.0", | ||
| "@fluidframework/core-interfaces": "~2.80.0", | ||
| "@fluidframework/core-utils": "~2.80.0", | ||
| "@fluidframework/datastore": "~2.80.0", | ||
| "@fluidframework/datastore-definitions": "~2.80.0", | ||
| "@fluidframework/driver-definitions": "~2.80.0", | ||
| "@fluidframework/runtime-definitions": "~2.80.0", | ||
| "@fluidframework/runtime-utils": "~2.80.0", | ||
| "@fluidframework/telemetry-utils": "~2.80.0", | ||
| "@fluid-internal/client-utils": "~2.81.0", | ||
| "@fluidframework/container-definitions": "~2.81.0", | ||
| "@fluidframework/container-runtime": "~2.81.0", | ||
| "@fluidframework/container-runtime-definitions": "~2.81.0", | ||
| "@fluidframework/core-interfaces": "~2.81.0", | ||
| "@fluidframework/core-utils": "~2.81.0", | ||
| "@fluidframework/datastore": "~2.81.0", | ||
| "@fluidframework/datastore-definitions": "~2.81.0", | ||
| "@fluidframework/driver-definitions": "~2.81.0", | ||
| "@fluidframework/runtime-definitions": "~2.81.0", | ||
| "@fluidframework/runtime-utils": "~2.81.0", | ||
| "@fluidframework/telemetry-utils": "~2.81.0", | ||
| "lz4js": "^0.2.0" | ||
@@ -70,11 +70,11 @@ }, | ||
| "@biomejs/biome": "~1.9.3", | ||
| "@fluid-internal/mocha-test-setup": "~2.80.0", | ||
| "@fluid-private/stochastic-test-utils": "~2.80.0", | ||
| "@fluid-tools/build-cli": "^0.62.0", | ||
| "@fluid-internal/mocha-test-setup": "~2.81.0", | ||
| "@fluid-private/stochastic-test-utils": "~2.81.0", | ||
| "@fluid-tools/build-cli": "^0.63.0", | ||
| "@fluidframework/build-common": "^2.0.3", | ||
| "@fluidframework/build-tools": "^0.62.0", | ||
| "@fluidframework/eslint-config-fluid": "~2.80.0", | ||
| "@fluidframework/merge-tree": "~2.80.0", | ||
| "@fluidframework/sequence": "~2.80.0", | ||
| "@fluidframework/test-runtime-utils": "~2.80.0", | ||
| "@fluidframework/build-tools": "^0.63.0", | ||
| "@fluidframework/eslint-config-fluid": "~2.81.0", | ||
| "@fluidframework/merge-tree": "~2.81.0", | ||
| "@fluidframework/sequence": "~2.81.0", | ||
| "@fluidframework/test-runtime-utils": "~2.81.0", | ||
| "@microsoft/api-extractor": "7.52.11", | ||
@@ -81,0 +81,0 @@ "@types/mocha": "^10.0.10", |
| /*! | ||
| * Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| module.exports = { | ||
| extends: [require.resolve("@fluidframework/eslint-config-fluid"), "prettier"], | ||
| parserOptions: { | ||
| project: ["./tsconfig.json", "./src/test/tsconfig.json"], | ||
| }, | ||
| rules: { | ||
| // #region TODO: remove these once eslint-config-fluid has been updated to 5.8.0 | ||
| "@typescript-eslint/consistent-type-exports": [ | ||
| "error", | ||
| { fixMixedExportsWithInlineTypeSpecifier: true }, | ||
| ], | ||
| "@typescript-eslint/consistent-type-imports": [ | ||
| "error", | ||
| { fixStyle: "inline-type-imports" }, | ||
| ], | ||
| "@typescript-eslint/no-import-type-side-effects": "error", | ||
| // #endregion | ||
| }, | ||
| overrides: [ | ||
| { | ||
| // Rules only for test files | ||
| files: ["*.spec.ts", "src/test/**"], | ||
| rules: { | ||
| "import-x/no-nodejs-modules": [ | ||
| "error", | ||
| { allow: ["node:assert", "node:fs", "node:path"] }, | ||
| ], | ||
| "unicorn/prefer-module": "off", | ||
| }, | ||
| }, | ||
| ], | ||
| }; |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
262196
-0.55%110
-0.9%2890
-1.23%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated