Skip to content

Commit f8feb36

Browse files
committed
fix: Configuration issue with changeset
chore: Add sane defaults to vscode's `settings.json` chore: Add `CODEOWNERS` chore: Update the `README.md` to reflect the project's current state fix: Monorepo configuration in `pnpm-workspaces.yaml`
1 parent be4e8c2 commit f8feb36

7 files changed

Lines changed: 54 additions & 6 deletions

File tree

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"snapshot": {
1717
"useCalculatedVersion": true
1818
},
19-
"ignore": ["@metro-ui/metro", "@metro-ui/launcher"]
19+
"ignore": ["@metro-ui/launcher"]
2020
}

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github** @filiphsps

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [filiphsps]

.vscode/extensions.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"recommendations": [
3+
"bradlc.vscode-tailwindcss",
4+
"mikestead.dotenv",
5+
"orta.vscode-jest",
6+
"expo.vscode-expo-tools",
7+
"dbaeumer.vscode-eslint",
8+
"yoavbls.pretty-ts-errors",
9+
"christian-kohler.path-intellisense",
10+
"christian-kohler.npm-intellisense",
11+
"chdsbd.github-code-owners"
12+
]
13+
}

.vscode/settings.json

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,37 @@
11
{
2+
"typescript.tsdk": "node_modules/typescript/lib",
3+
"typescript.locale": "en",
4+
"git.autofetch": "all",
5+
"git.countBadge": "tracked",
6+
"git.fetchOnPull": true,
7+
"git.inputValidationSubjectLength": 72,
8+
"git.inputValidationLength": 72,
9+
"git.inputValidation": true,
10+
"git.showPushSuccessNotification": true,
11+
"github.copilot.enable": {
12+
"plaintext": true,
13+
"markdown": true
14+
},
15+
"github.copilot.chat.localeOverride": "en",
216
"editor.codeActionsOnSave": {
317
"source.fixAll": "explicit",
418
"source.organizeImports": "explicit",
519
"source.sortMembers": "explicit"
620
},
7-
"cSpell.words": ["bitcode", "codegen", "commitlint", "nativewind", "Pressable", "startscreen", "Subviews", "tsup"]
21+
"files.autoSave": "off",
22+
"files.trimTrailingWhitespace": true,
23+
"files.eol": "\n",
24+
"files.trimFinalNewlines": false,
25+
"[plaintext]": {
26+
"editor.formatOnSave": false
27+
},
28+
"[git-commit]": {
29+
"editor.rulers": [72],
30+
"editor.wordWrap": "off",
31+
"workbench.editor.restoreViewState": false
32+
},
33+
"cSpell.words": ["bitcode", "codegen", "commitlint", "nativewind", "Pressable", "startscreen", "Subviews", "tsup"],
34+
"githubCodeOwners.format.enabled": true,
35+
"typescript.preferences.importModuleSpecifier": "non-relative",
36+
"typescript.experimental.expandableHover": true
837
}

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
# ![Logo](Shell.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png) Adaptive Shell
1+
# ![Logo](https://raw.githubusercontent.com/filiphsps/AdaptiveShell/refs/heads/legacy/xaml-islands/Shell.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png) Adaptive Shell
22

33
An adaptive and modern shell replacement for mobile and tablet computing devices running Windows 11 (with Windows 10 backwards-compatibility).
44

5+
> [!WARNING]
6+
> We just started the process of migrating the codebase to TypeScript and React Native, you can still find the legacy XAML Islands version in the [legacy branches](https://github.com/filiphsps/AdaptiveShell/tree/legacy/xaml-islands).
7+
8+
59
## User interface
610

7-
| ![](.github/img/start-dc70ce9.png) | ![](.github/img/apps-dc70ce9.png) | ![](.github/img/settings-dc70ce9.png) |
11+
| ![](https://raw.githubusercontent.com/filiphsps/AdaptiveShell/refs/heads/legacy/xaml-islands/.github/img/start-dc70ce9.png) | ![](https://raw.githubusercontent.com/filiphsps/AdaptiveShell/refs/heads/legacy/xaml-islands/.github/img/apps-dc70ce9.png) | ![](https://raw.githubusercontent.com/filiphsps/AdaptiveShell/refs/heads/legacy/xaml-islands/.github/img/settings-dc70ce9.png) |
812
| ---------------------------------- | --------------------------------- | ------------------------------------- |
913
| Start screen | All apps | Settings |
1014

pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
packages:
2-
- apps/*
3-
- packages/*
2+
- apps/**
3+
- packages/**
44

55
enablePrePostScripts: true
66

0 commit comments

Comments
 (0)