forked from aris-creator/jancok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkDependencies.js
131 lines (119 loc) · 2.92 KB
/
linkDependencies.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* Setup core dependencies as they're not published yet
*/
const execa = require("execa");
const path = require("path");
const apiClientDir = path.resolve(__dirname, "../packages/shopware-6-client");
const composablesDir = path.resolve(__dirname, "../packages/composables");
const themeBaseDir = path.resolve(__dirname, "../packages/theme-base");
const defaultThemeDir = path.resolve(__dirname, "../packages/default-theme");
const nuxtModuleDir = path.resolve(__dirname, "../packages/nuxt-module");
const helpersDir = path.resolve(__dirname, "../packages/helpers");
const cliDir = path.resolve(__dirname, "../packages/cli");
const commonsDir = path.resolve(__dirname, "../packages/commons");
async function run() {
/**
* Link shopware-6-client
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: apiClientDir,
});
await execa("yarn", ["link", "@shopware-pwa/shopware-6-client"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
await execa("yarn", ["link", "@shopware-pwa/shopware-6-client"], {
stdio: "inherit",
cwd: cliDir,
});
/**
* Link composables
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: composablesDir,
});
await execa("yarn", ["link", "@shopware-pwa/composables"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
/**
* Link helpers
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: helpersDir,
});
await execa("yarn", ["link", "@shopware-pwa/helpers"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
/**
* Link commons
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: commonsDir,
});
await execa("yarn", ["link", "@shopware-pwa/commons"], {
stdio: "inherit",
cwd: apiClientDir,
});
await execa("yarn", ["link", "@shopware-pwa/commons"], {
stdio: "inherit",
cwd: helpersDir,
});
await execa("yarn", ["link", "@shopware-pwa/commons"], {
stdio: "inherit",
cwd: composablesDir,
});
/**
* Link nuxt-module
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: nuxtModuleDir,
});
await execa("yarn", ["link", "@shopware-pwa/nuxt-module"], {
stdio: "inherit",
cwd: cliDir,
});
/**
* Link CLI dir
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: cliDir,
});
await execa("yarn", ["link", "@shopware-pwa/cli"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
/**
* Link theme-base dir
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: themeBaseDir,
});
await execa("yarn", ["link", "@shopware-pwa/theme-base"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
/**
* Link default-theme dir
*/
await execa("yarn", ["link"], {
stdio: "inherit",
cwd: defaultThemeDir,
});
/**
* link local storefront-ui
*/
// await execa("yarn", ["link", "@storefront-ui/vue"], {
// stdio: "inherit",
// cwd: defaultThemeDir
// });
}
run();