Skip to content

Commit 223b0e0

Browse files
Merge pull request #273 from ben-zhang-at-salesforce/move-schema-folder
fix: move schema out of commands folder
2 parents b60024f + a0ec7c8 commit 223b0e0

File tree

7 files changed

+1324
-1248
lines changed

7 files changed

+1324
-1248
lines changed

src/cli/commands/force/lightning/local/app/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
RequirementProcessor
2121
} from '@salesforce/lwc-dev-mobile-core';
2222
import { z } from 'zod';
23-
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../schema/device.js';
23+
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../../../../../schema/device.js';
2424

2525
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
2626
const messages = Messages.loadMessages('@salesforce/lwc-dev-mobile', 'app-install');

src/cli/commands/force/lightning/local/app/launch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
RequirementProcessor
2222
} from '@salesforce/lwc-dev-mobile-core';
2323
import { z } from 'zod';
24-
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../schema/device.js';
24+
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../../../../../schema/device.js';
2525

2626
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
2727
const messages = Messages.loadMessages('@salesforce/lwc-dev-mobile', 'app-launch');

src/cli/commands/force/lightning/local/device/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
RequirementProcessor
2525
} from '@salesforce/lwc-dev-mobile-core';
2626
import { z } from 'zod';
27-
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../schema/device.js';
27+
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../../../../../schema/device.js';
2828

2929
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
3030
const messages = Messages.loadMessages('@salesforce/lwc-dev-mobile', 'device-create');

src/cli/commands/force/lightning/local/device/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
FlagsConfigType,
2222
PerformanceMarkers
2323
} from '@salesforce/lwc-dev-mobile-core';
24-
import { DeviceListSchema } from '../schema/device.js';
24+
import { DeviceListSchema } from '../../../../../schema/device.js';
2525

2626
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
2727
const messages = Messages.loadMessages('@salesforce/lwc-dev-mobile', 'device-list');

src/cli/commands/force/lightning/local/device/start.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
RequirementProcessor
2424
} from '@salesforce/lwc-dev-mobile-core';
2525
import { z } from 'zod';
26-
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../schema/device.js';
26+
import { DeviceOperationResultSchema, DeviceOperationResultType, DeviceSchema } from '../../../../../schema/device.js';
2727

2828
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
2929
const messages = Messages.loadMessages('@salesforce/lwc-dev-mobile', 'device-start');

src/cli/commands/force/lightning/local/schema/device.ts renamed to src/cli/schema/device.ts

File renamed without changes.

yarn.lock

Lines changed: 1319 additions & 1243 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)