Skip to content

Commit ba69a23

Browse files
committed
`yarn format
1 parent ebf9d2f commit ba69a23

5 files changed

Lines changed: 19 additions & 16 deletions

File tree

packages/configs/jest-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
"version": "0.1.0",
44
"private": true,
55
"description": "Jest configuration for UI Fabric React Native",
6+
"license": "MIT",
67
"repository": {
78
"type": "git",
89
"url": "https://github.com/microsoft/fluentui-react-native",
910
"directory": "packages/framework/jest-config"
1011
},
11-
"license": "MIT",
1212
"type": "module",
13+
"main": "./src/index.js",
14+
"module": "./src/index.js",
1315
"exports": {
1416
".": {
1517
"import": "./src/index.js",
@@ -18,8 +20,6 @@
1820
},
1921
"./package.json": "./package.json"
2022
},
21-
"main": "./src/index.js",
22-
"module": "./src/index.js",
2323
"scripts": {
2424
"build": "tsgo",
2525
"build-core": "tsgo",

packages/dependency-profiles/update-profile.mts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ const { major, minor } = semverCoerce(devDependencies?.['react-native']) ?? {};
4040
// the current react-native version in index.js to a new file under src named
4141
// "furn-profile-X.Y.js" and add that profile here. For example:
4242
const profiles: Record<string, Record<string, PackageEntry>> = { [`${major}.${minor}`]: packages };
43-
for (const filename of readdirSync('./src').filter((f: string) => f.startsWith('furn-profile-')).sort().reverse()) {
43+
for (const filename of readdirSync('./src')
44+
.filter((f: string) => f.startsWith('furn-profile-'))
45+
.sort()
46+
.reverse()) {
4447
Object.assign(profiles, (await import(`./src/${filename}`)).default);
4548
}
4649

packages/experimental/Stack/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"description": "A cross-platform opinionated Fluent Text component",
6+
"license": "MIT",
7+
"author": "",
68
"repository": {
79
"type": "git",
810
"url": "https://github.com/microsoft/fluentui-react-native.git",
911
"directory": "packages/experimental/Stack"
1012
},
11-
"license": "MIT",
12-
"author": "",
13+
"main": "lib-commonjs/index.js",
14+
"module": "lib/index.js",
15+
"types": "lib/index.d.ts",
1316
"exports": {
1417
".": {
1518
"types": "./lib/index.d.ts",
@@ -18,9 +21,6 @@
1821
"default": "./src/index.ts"
1922
}
2023
},
21-
"main": "lib-commonjs/index.js",
22-
"module": "lib/index.js",
23-
"types": "lib/index.d.ts",
2424
"scripts": {
2525
"build": "fluentui-scripts build",
2626
"build-cjs": "tsgo --outDir lib-commonjs",

packages/utils/test-tools/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"description": "Tools and mocks for testing components using jest",
6+
"license": "MIT",
7+
"author": "",
68
"repository": {
79
"type": "git",
810
"url": "https://github.com/microsoft/fluentui-react-native.git",
911
"directory": "packages/utils/test-tools"
1012
},
11-
"license": "MIT",
12-
"author": "",
13+
"main": "lib-commonjs/index.js",
14+
"module": "lib/index.js",
15+
"types": "lib/index.d.ts",
1316
"exports": {
1417
".": {
1518
"types": "./lib/index.d.ts",
@@ -18,9 +21,6 @@
1821
"default": "./src/index.ts"
1922
}
2023
},
21-
"main": "lib-commonjs/index.js",
22-
"module": "lib/index.js",
23-
"types": "lib/index.d.ts",
2424
"scripts": {
2525
"build": "fluentui-scripts build",
2626
"build-cjs": "tsgo --outDir lib-commonjs",

scripts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"url": "https://github.com/microsoft/fluentui-react-native.git",
99
"directory": "scripts"
1010
},
11-
"type": "module",
12-
"main": "./src/index.js",
1311
"bin": {
1412
"fluentui-scripts": "./src/cli.mjs"
1513
},
14+
"type": "module",
15+
"main": "./src/index.js",
1616
"scripts": {
1717
"build": "tsgo",
1818
"build-core": "tsgo",

0 commit comments

Comments
 (0)