Skip to content

Commit 6111fb4

Browse files
authored
fix(template): use locally installed schema for app.json (#2790)
1 parent 8aacfc3 commit 6111fb4

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

packages/app/example/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/react-native-test-app/trunk/schema.json",
2+
"$schema": "./node_modules/react-native-test-app/schema.json",
33
"name": "Example",
44
"displayName": "Example",
55
"components": [

packages/app/test/embed-manifest/fixtures.mts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export const simple = {
2-
$schema:
3-
"https://raw.githubusercontent.com/microsoft/react-native-test-app/trunk/schema.json",
2+
$schema: "./node_modules/react-native-test-app/schema.json",
43
name: "Example",
54
displayName: "Template",
65
version: "1.0",

packages/example-macos/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/react-native-test-app/trunk/schema.json",
2+
"$schema": "./node_modules/react-native-test-app/schema.json",
33
"name": "Example",
44
"displayName": "Example",
55
"components": [

packages/example-windows/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/react-native-test-app/trunk/schema.json",
2+
"$schema": "./node_modules/react-native-test-app/schema.json",
33
"name": "Example",
44
"displayName": "Example",
55
"components": [

0 commit comments

Comments
 (0)