Skip to content

Commit 274198f

Browse files
committed
clean cpp generated files
1 parent f5aa089 commit 274198f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

js/scripts/clean-generated-files.js

+5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ function cleanGeneratedFilesAsync() {
6969
var pyPromise = rmFileGlobAsync('../pythreejs/**/*_autogen.py');
7070
var pyIndexPromise = rmFileGlobAsync('../pythreejs/**/__init__.py');
7171

72+
var cppPromise = rmFileGlobAsync('../xthreejs/**/*_autogen.hpp');
73+
var cmakePromise = rmFileGlobAsync('../xthreejs/CMakeLists.txt');
74+
7275
var docPromise = rmFileGlobAsync('../docs/source/**/*_autogen.rst');
7376
var docIndexPromise = rmFileGlobAsync('../docs/source/api/**/index.rst');
7477

@@ -78,6 +81,8 @@ function cleanGeneratedFilesAsync() {
7881
jsIndexPromise,
7982
pyPromise,
8083
pyIndexPromise,
84+
cppPromise,
85+
cmakePromise,
8186
docPromise,
8287
docIndexPromise,
8388
]);

0 commit comments

Comments
 (0)