We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9416975 commit f9af6a9Copy full SHA for f9af6a9
1 file changed
packages/uikit-workshop/build-tools.js
@@ -3,7 +3,10 @@ const path = require('path');
3
const fs = require('fs-extra');
4
5
fs.mkdirp('./node_modules/@pattern-lab/');
6
-fs.unlinkSync('./dependencyGraph.json');
+// clear any previously generated dependency graph files if present
7
+if (fs.existsSync('./dependencyGraph.json')) {
8
+ fs.unlinkSync('./dependencyGraph.json');
9
+}
10
fs.ensureSymlink(__dirname, './node_modules/@pattern-lab/uikit-workshop');
11
12
const configKeysEndingWithASlash = [
0 commit comments