Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@fluidframework/gitresources

Package Overview
Dependencies
Maintainers
1
Versions
276
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluidframework/gitresources - npm Package Compare versions

Comparing version
8.0.0-366087
to
8.0.0-396416
+16
eslint.config.mts
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
import type { Linter } from "eslint";
import { recommendedConfig } from "../../eslint.config.base.mts";
const config: Linter.Config[] = [
...recommendedConfig,
{
ignores: ["*.spec.ts"],
},
];
export default config;
+8
-9
{
"name": "@fluidframework/gitresources",
"version": "8.0.0-366087",
"version": "8.0.0-396416",
"description": "Git resource definitions for Fluid services",

@@ -28,17 +28,16 @@ "homepage": "https://fluidframework.com",

"tsc": "tsc",
"typetests:gen": "flub generate typetests --dir . -v",
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
"typetests:gen": "flub generate typetests --dir . -v"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.60.0",
"@fluid-tools/build-cli": "^0.63.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.60.0",
"@fluidframework/eslint-config-fluid": "^8.1.0",
"@fluidframework/build-tools": "^0.63.0",
"@fluidframework/eslint-config-fluid": "^9.0.0",
"@fluidframework/gitresources-previous": "npm:@fluidframework/gitresources@7.0.0",
"@microsoft/api-extractor": "^7.45.1",
"concurrently": "^8.2.1",
"@microsoft/api-extractor": "^7.58.1",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"eslint": "~8.57.0",
"prettier": "~3.0.3",
"rimraf": "^4.4.0",
"rimraf": "^6.1.3",
"typescript": "~5.1.6"

@@ -45,0 +44,0 @@ },

Sorry, the diff of this file is not supported yet

/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
module.exports = {
extends: [require.resolve("@fluidframework/eslint-config-fluid"), "prettier"],
rules: {
"promise/catch-or-return": ["error", { allowFinally: true }],
// TODO: enable strict null checks in tsconfig and remove this override
"@typescript-eslint/prefer-nullish-coalescing": "off",
},
};