Skip to content

Commit

Permalink
Merge pull request #1495 from flexn-io/fix/lightningjs
Browse files Browse the repository at this point in the history
Fix/lightningjs + unlock engine change using command options
  • Loading branch information
pavjacko authored Apr 8, 2024
2 parents db532aa + 3d649fe commit 0e49def
Show file tree
Hide file tree
Showing 13 changed files with 136 additions and 42 deletions.
4 changes: 3 additions & 1 deletion packages/app-harness/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
import './src/entry/'; //eslint-disable-line
import Main from './src/entry';

export default Main;
6 changes: 6 additions & 0 deletions packages/app-harness/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "app-harness",
"identifier": "com.app.harness",
"version": "1.0.0",
"icon": "./static/icon.png"
}
3 changes: 2 additions & 1 deletion packages/app-harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
"react-native-splash-screen": "3.3.0",
"react-native-tvos": "0.73.6-0",
"react-native-web": "0.19.9",
"rn-fetch-blob": "0.12.0"
"rn-fetch-blob": "0.12.0",
"@lightningjs/cli": "2.13.0"
},
"devDependencies": {
"@flexn/assets-renative-outline": "0.3.3",
Expand Down
14 changes: 14 additions & 0 deletions packages/app-harness/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"appSettings": {
"stage": {
"clearColor": "0x00000000",
"useImageWorker": true
},
"debug": false
},
"platformSettings": {
"path": "./static",
"log": true,
"showVersion": false
}
}
19 changes: 19 additions & 0 deletions packages/app-harness/src/app/index.lng.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { Router, Utils } from '@lightningjs/sdk';
import HomeScreen from '../components/HomeScreen/index.lng';
export default class App extends Router.App {
static getFonts() {
return [{ family: 'Inter-Light', url: Utils.asset('fonts/Inter-Light.ttf') }];
}

_setup() {
Router.startRouter({
root: 'home',
routes: [
{
path: 'home',
component: HomeScreen as any,
},
],
});
}
}
48 changes: 48 additions & 0 deletions packages/app-harness/src/components/HomeScreen/index.lng.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { Utils } from '@lightningjs/sdk';
import Lightning from '@lightningjs/core';
import { Api } from '@rnv/renative';
import config from '../../../package.json';

interface HomeTemplateSpec extends Lightning.Component.TemplateSpec {
color: number;
}
export interface HomeTypeConfig extends Lightning.Component.TypeConfig {
IsPage: true;
}

export default class Home
extends Lightning.Component<HomeTemplateSpec, HomeTypeConfig>
implements Lightning.Component.ImplementTemplateSpec<HomeTemplateSpec>
{
static _template() {
return {
rect: true,
w: 1920,
h: 1080,
color: 0xffffffff,
flex: { justifyContent: 'center', direction: 'column', alignItems: 'center' } as const,
Logo: {
w: 150,
h: 150,
src: Utils.asset('icon.png'),
flexItem: { marginBottom: 50 },
},
Text1: this._renderText('ReNative Harness', 56, 'bold'),
Text2: this._renderText(
`v${config.version}, platform: ${Api.platform}, factor: ${Api.formFactor}, engine: ${Api.engine}`,
25
),
};
}

static _renderText(text: string, size: number, style = 'normal') {
return {
text: {
text: text,
fontSize: size,
fontStyle: style,
textColor: 0xff000000,
},
};
}
}
Binary file not shown.
Binary file added packages/app-harness/static/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"if (!fs.existsSync(distDir)) {": "if (true) { // need this to always run, since this dir is created by rnv"
},
"src/helpers/build.js": {
"path.join(process.cwd(), enterFile),": "path.join(process.cwd(), process.env.LNG_ENTRY_FILE),"
"path.join(process.cwd(), enterFile),": "path.join(process.cwd(), process.env.LNG_ENTRY_FILE),",
"fs.appendFileSync(filename, os.EOL + missingEntries.join(os.EOL) + os.EOL)": "// fs.appendFileSync(filename, /* changed by RNV */ os.EOL + missingEntries.join(os.EOL) + os.EOL)"
},
"src/configs/rollup.es6.config.js": {
"resolve({ extensions, mainFields: buildHelpers.getResolveConfigForBundlers() }),": "resolve({ extensions: process.env.RNV_EXTENSIONS.split(',').map(extension => `.${extension}`), mainFields: buildHelpers.getResolveConfigForBundlers() }),",
Expand Down
10 changes: 5 additions & 5 deletions packages/core/src/configs/buildConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,17 +202,17 @@ const _generateBuildConfig = (mergePaths: string[], mergeFiles: Array<object | u
}
}

_checkBuildSchemeIfEngine(c);
_checkEngineOverride(c);
};

const _checkBuildSchemeIfEngine = (c: RnvContext) => {
const { scheme } = c.program.opts();
if (!c.platform || !scheme) return;
const _checkEngineOverride = (c: RnvContext) => {
const { scheme, engine } = c.program.opts();
if (!c.platform || !scheme || !engine) return;

const platform = c.buildConfig?.platforms?.[c.platform];
if (!platform) return;

const definedEngine = platform.buildSchemes?.[scheme]?.engine;
const definedEngine = platform.buildSchemes?.[scheme]?.engine || engine;
if (definedEngine) {
platform.engine = definedEngine;
}
Expand Down
6 changes: 4 additions & 2 deletions packages/core/src/tasks/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ export type ParamKeys<ExtraKeys extends string = ProgramOptionsKey> = Partial<
export const RnvTaskCoreOptionPresets = {
withCore: (arr?: Array<RnvTaskOption>) =>
[
RnvTaskOptions.scheme, // temporary workaround
RnvTaskOptions.engine, // temporary workaround
RnvTaskOptions.platform, // platform is necessary to be accepted as base for the `rnv` command to work with enginie plugins
RnvTaskOptions.info,
RnvTaskOptions.ci,
Expand All @@ -258,10 +260,10 @@ export const RnvTaskOptionPresets = {
[
RnvTaskOptions.reset,
RnvTaskOptions.resetHard,
RnvTaskOptions.engine,
// RnvTaskOptions.engine,
RnvTaskOptions.resetAssets,
RnvTaskOptions.appConfigID,
RnvTaskOptions.scheme,
// RnvTaskOptions.scheme,
RnvTaskOptions.packageManager,
// RnvTaskOptions.platform,
].concat(arr || []),
Expand Down
4 changes: 3 additions & 1 deletion packages/engine-lightning/src/sdk/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export const runLightningProject = async () => {
silent: false,
env: {
...CoreEnvVars.BASE(),
...CoreEnvVars.RNV_EXTENSIONS(),
...EnvVars.LNG_BUILD_FOLDER(),
...EnvVars.LNG_ENTRY_FILE(),
...EnvVars.LNG_SERVE_PORT(),
Expand Down Expand Up @@ -68,13 +69,14 @@ export const buildLightningProject = async () => {
const target = getConfigProp('target') || 'es6';
const tBuild = getPlatformProjectDir();

const tOut = path.join(tBuild || '', 'output');
const tOut = path.join(tBuild!, 'output');

await executeAsync(`lng dist --${target}`, {
stdio: 'inherit',
silent: false,
env: {
...CoreEnvVars.BASE(),
...CoreEnvVars.RNV_EXTENSIONS(),
...EnvVars.LNG_DIST_FOLDER(),
...EnvVars.LNG_ENTRY_FILE(),
},
Expand Down
61 changes: 30 additions & 31 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1769,117 +1769,117 @@

"@esbuild/aix-ppc64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f"
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f"
integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==

"@esbuild/android-arm64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4"
integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==

"@esbuild/android-arm@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824"
integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==

"@esbuild/android-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d"
integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==

"@esbuild/darwin-arm64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e"
integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==

"@esbuild/darwin-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd"
integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==

"@esbuild/freebsd-arm64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487"
integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==

"@esbuild/freebsd-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c"
integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==

"@esbuild/linux-arm64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b"
integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==

"@esbuild/linux-arm@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef"
integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==

"@esbuild/linux-ia32@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601"
integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==

"@esbuild/linux-loong64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299"
integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==

"@esbuild/linux-mips64el@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec"
integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==

"@esbuild/linux-ppc64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8"
integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==

"@esbuild/linux-riscv64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf"
integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==

"@esbuild/linux-s390x@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8"
integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==

"@esbuild/linux-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78"
integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==

"@esbuild/netbsd-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b"
integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==

"@esbuild/openbsd-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0"
integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==

"@esbuild/sunos-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30"
integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==

"@esbuild/win32-arm64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae"
integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==

"@esbuild/win32-ia32@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67"
integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==

"@esbuild/win32-x64@0.19.12":
version "0.19.12"
resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae"
integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==

"@eslint-community/eslint-utils@^4.2.0":
Expand Down Expand Up @@ -2529,7 +2529,7 @@

"@lightningjs/cli@2.13.0":
version "2.13.0"
resolved "https://registry.npmjs.org/@lightningjs/cli/-/cli-2.13.0.tgz#054fd789d280b0eb25071e87d6c321b06ced364f"
resolved "https://registry.yarnpkg.com/@lightningjs/cli/-/cli-2.13.0.tgz#054fd789d280b0eb25071e87d6c321b06ced364f"
integrity sha512-QasBE+ZowUbXzljEeNT8AVgzpZ8kRLa/7eqmZf+AUBOOPRx+7zFHzCQJshKwQsHIySRzq9lZ6fwxjRZHXjE23Q==
dependencies:
"@babel/core" "^7.11.6"
Expand Down Expand Up @@ -2573,7 +2573,7 @@

"@lightningjs/core@^2.12.1":
version "2.12.1"
resolved "https://registry.npmjs.org/@lightningjs/core/-/core-2.12.1.tgz#1481a86bf3d804cf29539207afdfd40090fecf49"
resolved "https://registry.yarnpkg.com/@lightningjs/core/-/core-2.12.1.tgz#1481a86bf3d804cf29539207afdfd40090fecf49"
integrity sha512-g5Uh3BuE9GK5BsdzSL9CgPQ7c/RZ2OnyJxeSp8NMFBgMTV8MNOk4CT734YeV+whp7yUPU6asnAWJEJlB/fRpYQ==

"@lightningjs/core@^2.6.0":
Expand All @@ -2583,7 +2583,7 @@

"@lightningjs/sdk@5.5.1":
version "5.5.1"
resolved "https://registry.npmjs.org/@lightningjs/sdk/-/sdk-5.5.1.tgz#9f9c95fd05e39da9a40e136ff22505c806f6326b"
resolved "https://registry.yarnpkg.com/@lightningjs/sdk/-/sdk-5.5.1.tgz#9f9c95fd05e39da9a40e136ff22505c806f6326b"
integrity sha512-q7M29oBAz3v+CKCL3Ml/RpaF1tjZgi8I1KdABBk9NvUaJ4PkpJfB3coqDwIJ10fYJZtd2fKdCOc6NUfXFqo/9g==
dependencies:
"@babel/polyfill" "^7.11.5"
Expand Down Expand Up @@ -2638,8 +2638,7 @@

"@metrological/sdk@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@metrological/sdk/-/sdk-1.0.2.tgz#5f7349abad3bb82a2f7f24a31350d4b684dc7acc"
integrity sha512-Aa4eDwPNDF4RIrsGWu+6+l+dQG7NnCx+6nf5GDmc2OtKHjMXRTTxgavEc7Vek0xGlU5e/55VXn87KSHe1HWmhg==
resolved "https://codeload.github.com/metrological/metrological-sdk/tar.gz/0e6925d16e853e9b54ede7241c186b004dc8dbe2"
dependencies:
"@babel/polyfill" "^7.11.5"
"@lightningjs/core" "^2.6.0"
Expand Down Expand Up @@ -8102,7 +8101,7 @@ commander@12.0.0:

"commander@^10.0.0 ":
version "10.0.1"
resolved "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==

commander@^2.16.0, commander@^2.20.0, commander@^2.20.3, commander@^2.8.1, commander@^2.9.0:
Expand Down Expand Up @@ -9573,7 +9572,7 @@ dotenv@^10.0.0, dotenv@~10.0.0:

dotenv@^16.0.3:
version "16.4.5"
resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==

dotenv@^16.3.1:
Expand Down Expand Up @@ -9949,7 +9948,7 @@ esbuild@^0.12.1:

esbuild@^0.19.3:
version "0.19.12"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz#dc82ee5dc79e82f5a5c3b4323a2a641827db3e04"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.12.tgz#dc82ee5dc79e82f5a5c3b4323a2a641827db3e04"
integrity sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==
optionalDependencies:
"@esbuild/aix-ppc64" "0.19.12"
Expand Down

0 comments on commit 0e49def

Please sign in to comment.