We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5aa089 commit 274198fCopy full SHA for 274198f
js/scripts/clean-generated-files.js
@@ -69,6 +69,9 @@ function cleanGeneratedFilesAsync() {
69
var pyPromise = rmFileGlobAsync('../pythreejs/**/*_autogen.py');
70
var pyIndexPromise = rmFileGlobAsync('../pythreejs/**/__init__.py');
71
72
+ var cppPromise = rmFileGlobAsync('../xthreejs/**/*_autogen.hpp');
73
+ var cmakePromise = rmFileGlobAsync('../xthreejs/CMakeLists.txt');
74
+
75
var docPromise = rmFileGlobAsync('../docs/source/**/*_autogen.rst');
76
var docIndexPromise = rmFileGlobAsync('../docs/source/api/**/index.rst');
77
@@ -78,6 +81,8 @@ function cleanGeneratedFilesAsync() {
78
81
jsIndexPromise,
79
82
pyPromise,
80
83
pyIndexPromise,
84
+ cppPromise,
85
+ cmakePromise,
86
docPromise,
87
docIndexPromise,
88
]);
0 commit comments