Skip to content

Commit 8c4c50b

Browse files
async
1 parent 1117669 commit 8c4c50b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Package/gulpfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,40 +75,40 @@ const buildAndroid = async () => {
7575
exec(`./gradlew babylonjs_react-native:assembleRelease --stacktrace --info`, '../Apps/Playground/android');
7676
};
7777

78-
const copyCommonFiles = async () => {
78+
const copyCommonFiles = () => {
7979
return gulp.src('../Modules/@babylonjs/react-native/README.md')
8080
.pipe(gulp.src('../NOTICE.html'))
8181
.pipe(gulp.src(`../Modules/@babylonjs/react-native/react-native-babylon.podspec`))
8282
.pipe(gulp.src(`../Modules/@babylonjs/react-native/postinstall.js`))
8383
.pipe(gulp.dest('Assembled'));
8484
};
8585

86-
const copyAndroidARCoreFiles = async () => {
86+
const copyAndroidARCoreFiles = () => {
8787
return gulp.src('../Modules/@babylonjs/react-native/shared/BabylonNative/Repo/Dependencies/xr/Source/ARCore/Include/*')
8888
.pipe(gulp.dest(`Assembled/android/include`));
8989
};
9090

91-
const copyiOSARKitFiles = async () => {
91+
const copyiOSARKitFiles = () => {
9292
return gulp.src('../Modules/@babylonjs/react-native/shared/BabylonNative/Repo/Dependencies/xr/Source/ARKit/Include/*')
9393
.pipe(gulp.dest(`Assembled/ios/include`));
9494
};
9595

96-
const copySharedFiles = async () => {
96+
const copySharedFiles = () => {
9797
return gulp.src('../Modules/@babylonjs/react-native/shared/**')
9898
.pipe(gulp.dest('Assembled/shared'));
9999
};
100100

101-
const copyIOSFiles = async () => {
101+
const copyIOSFiles = () => {
102102
return gulp.src('../Modules/@babylonjs/react-native/ios/**')
103103
.pipe(gulp.dest(`Assembled/ios`));
104104
};
105105

106-
const copyAndroidFiles = async () => {
106+
const copyAndroidFiles = () => {
107107
return gulp.src('../Modules/@babylonjs/react-native/android/**')
108108
.pipe(gulp.dest(`Assembled/android`));
109109
};
110110

111-
const copyWindowsFiles = async () => {
111+
const copyWindowsFiles = () => {
112112
return gulp.src('../Modules/@babylonjs/react-native/windows/**')
113113
.pipe(gulp.dest(`Assembled/windows`));
114114
};

0 commit comments

Comments
 (0)