@fluidframework/routerlicious-urlresolver 2.80.0 → 2.81.0-374083

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/eslint.config.mts CHANGED
@@ -1,8 +1,8 @@
1
- /* eslint-disable */
2
- /**
3
- * GENERATED FILE - DO NOT EDIT DIRECTLY.
4
- * To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
5
4
  */
5
+
6
6
  import type { Linter } from "eslint";
7
7
  import { minimalDeprecated } from "../../../common/build/eslint-config-fluid/flat.mts";
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/routerlicious-urlresolver",
3
- "version": "2.80.0",
3
+ "version": "2.81.0-374083",
4
4
  "description": "Url Resolver for routerlicious urls.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -37,20 +37,20 @@
37
37
  "main": "lib/index.js",
38
38
  "types": "lib/public.d.ts",
39
39
  "dependencies": {
40
- "@fluidframework/core-interfaces": "~2.80.0",
41
- "@fluidframework/core-utils": "~2.80.0",
42
- "@fluidframework/driver-definitions": "~2.80.0",
40
+ "@fluidframework/core-interfaces": "2.81.0-374083",
41
+ "@fluidframework/core-utils": "2.81.0-374083",
42
+ "@fluidframework/driver-definitions": "2.81.0-374083",
43
43
  "nconf": "^0.12.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@arethetypeswrong/cli": "^0.18.2",
47
47
  "@biomejs/biome": "~1.9.3",
48
- "@fluid-internal/mocha-test-setup": "~2.80.0",
49
- "@fluid-tools/build-cli": "^0.62.0",
48
+ "@fluid-internal/mocha-test-setup": "2.81.0-374083",
49
+ "@fluid-tools/build-cli": "^0.63.0",
50
50
  "@fluidframework/build-common": "^2.0.3",
51
- "@fluidframework/build-tools": "^0.62.0",
52
- "@fluidframework/eslint-config-fluid": "~2.80.0",
53
- "@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.74.0",
51
+ "@fluidframework/build-tools": "^0.63.0",
52
+ "@fluidframework/eslint-config-fluid": "2.81.0-374083",
53
+ "@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.80.0",
54
54
  "@microsoft/api-extractor": "7.52.11",
55
55
  "@types/mocha": "^10.0.10",
56
56
  "@types/nconf": "^0.10.0",
package/.eslintrc.cjs DELETED
@@ -1,40 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
-
6
- module.exports = {
7
- extends: [
8
- require.resolve("@fluidframework/eslint-config-fluid/minimal-deprecated"),
9
- "prettier",
10
- ],
11
- parserOptions: {
12
- project: ["./tsconfig.json", "./src/test/tsconfig.json"],
13
- },
14
- rules: {
15
- "@typescript-eslint/strict-boolean-expressions": "off",
16
- "unicorn/filename-case": [
17
- "error",
18
- {
19
- cases: {
20
- camelCase: true,
21
- pascalCase: true,
22
- },
23
- ignore: [/.*routerlicious-urlResolver\.spec\.ts/],
24
- },
25
- ],
26
-
27
- // This library is used in the browser, so we don't want dependencies on most node libraries.
28
- "import-x/no-nodejs-modules": ["error"],
29
- },
30
- overrides: [
31
- {
32
- // Rules only for test files
33
- files: ["*.spec.ts", "src/test/**"],
34
- rules: {
35
- // Test files are run in node only so additional node libraries can be used.
36
- "import-x/no-nodejs-modules": ["error", { allow: ["assert"] }],
37
- },
38
- },
39
- ],
40
- };