We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2314eac commit ce87027Copy full SHA for ce87027
.gitignore
@@ -40,3 +40,4 @@ Thumbs.db
40
41
.nx/cache
42
.angular
43
+.dev.env
tools/scripts/prepare-for-angular.mjs
@@ -34,7 +34,12 @@ promisify(exec)(
34
).then(r => {
35
writeFileSync(LIB_ANGULAR_MODULE_PATH, readFileSync(ANGULAR_MODULE_PATH))
36
}).finally(() => {
37
- unlinkSync(TEMP_FILE_PATH)
+ try {
38
+ unlinkSync(TEMP_FILE_PATH)
39
+ } catch (e) {
+
+ }
})
44
45
0 commit comments