Skip to content

Commit ce4a235

Browse files
committed
update subpackages
1 parent 4e8861d commit ce4a235

File tree

12 files changed

+10599
-10668
lines changed

12 files changed

+10599
-10668
lines changed

.react/devtools/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"postyalc": "yarn"
1111
},
1212
"dependencies": {
13-
"@reactunity/renderer": "^0.16.0",
14-
"clsx": "^2.0.0",
13+
"@reactunity/renderer": "^0.18.0",
14+
"clsx": "^2.1.0",
1515
"react": "^18.2.0"
1616
},
1717
"devDependencies": {
18-
"@reactunity/scripts": "^0.16.0",
19-
"typescript": "^5.2.2"
18+
"@reactunity/scripts": "^0.18.2",
19+
"typescript": "^5.4.4"
2020
}
2121
}

.react/injectable/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"postyalc": "yarn"
1313
},
1414
"dependencies": {
15-
"@reactunity/material": "^0.16.0",
16-
"@reactunity/renderer": "^0.16.0",
15+
"@reactunity/material": "^0.18.0",
16+
"@reactunity/renderer": "^0.18.0",
1717
"react": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@reactunity/scripts": "^0.16.0",
21-
"typescript": "^5.2.2"
20+
"@reactunity/scripts": "^0.18.2",
21+
"typescript": "^5.4.4"
2222
}
2323
}

.react/injectable/src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ReactUnityMaterialModule from '@reactunity/material/all';
1+
import * as ReactUnityMaterialModule from '@reactunity/material';
22
import * as ReactUnityModule from '@reactunity/renderer';
33
import * as ReactUnityWebGLCompat from '@reactunity/renderer/webgl-compat';
44
import * as React from 'react';

.react/quick-start/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"postyalc": "yarn"
1111
},
1212
"dependencies": {
13-
"@reactunity/renderer": "^0.16.0",
13+
"@reactunity/renderer": "^0.18.0",
1414
"react": "^18.2.0"
1515
},
1616
"devDependencies": {
17-
"@reactunity/scripts": "^0.16.0",
18-
"typescript": "^5.2.2"
17+
"@reactunity/scripts": "^0.18.2",
18+
"typescript": "^5.4.4"
1919
}
2020
}

.react/quick-start/src/common.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import checkImage from './assets/check.png';
55
import errorImage from './assets/close.png';
66
import infoImage from './assets/info.png';
77
import warnImage from './assets/warn.png';
8-
import styles from './index.module.scss';
8+
import styles from './styles.module.scss';
99

1010
export const check = <image source={checkImage} className={styles.checkIcon} />
1111
export const error = <image source={errorImage} className={styles.errorIcon} />

.react/quick-start/src/engine-plugins.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useCallback, useContext, useEffect, useState } from 'react';
2-
import { check, error, info, SetIsLoadingContext, warn, Window } from './common';
3-
import styles from './index.module.scss';
2+
import { SetIsLoadingContext, Window, check, error, info, warn } from './common';
3+
import styles from './styles.module.scss';
44

55
interface PluginType {
66
type: number;

.react/quick-start/src/main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { render } from '@reactunity/renderer';
22
import { useEffect, useState } from 'react';
3-
import { check, error, info, packageName, SetIsLoadingContext, warn, Window } from './common';
3+
import { SetIsLoadingContext, Window, check, error, info, packageName, warn } from './common';
44
import { EnginePlugins } from './engine-plugins';
5-
import styles from './index.module.scss';
5+
import styles from './styles.module.scss';
66
import { AdditionalPlugins } from './unity-plugins';
77

88
const vsCodePath = 'vscode://file/{path}/';

.react/quick-start/src/unity-plugins.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useCallback, useContext, useEffect, useState } from 'react';
2-
import { check, error, info, SetIsLoadingContext, warn, Window } from './common';
3-
import styles from './index.module.scss';
2+
import { SetIsLoadingContext, Window, check, error, info, warn } from './common';
3+
import styles from './styles.module.scss';
44

55
interface PluginType {
66
packageName: string;

0 commit comments

Comments
 (0)