@symbo.ls/cli 2.11.221 → 2.11.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/link-packages.js +12 -0
- package/bin/linking/packages.js +7 -7
- package/package.json +2 -2
package/bin/link-packages.js
CHANGED
|
@@ -37,8 +37,20 @@ program
|
|
|
37
37
|
.command('link-packages')
|
|
38
38
|
.description('Run "yarn link" on specified packages')
|
|
39
39
|
.option('-c, --capture', 'Capture and write all package names.')
|
|
40
|
+
.option('-j, --join', 'Join all links into one command.', true)
|
|
40
41
|
.action((opts) => {
|
|
41
42
|
if (opts.capture) return capture(opts)
|
|
43
|
+
if (opts.join) {
|
|
44
|
+
try {
|
|
45
|
+
console.log('Linking all smbls packages...')
|
|
46
|
+
execSync(`yarn link ${packages.join(' ')} --force`, { stdio: 'inherit' })
|
|
47
|
+
console.log('All packages linked successfully.')
|
|
48
|
+
} catch (error) {
|
|
49
|
+
console.error('Error linking packages:', error.message)
|
|
50
|
+
process.exit(1)
|
|
51
|
+
}
|
|
52
|
+
return
|
|
53
|
+
}
|
|
42
54
|
try {
|
|
43
55
|
for (const packageName of packages) {
|
|
44
56
|
console.log(`Linking ${packageName}...`)
|
package/bin/linking/packages.js
CHANGED
|
@@ -26,41 +26,41 @@ export default [
|
|
|
26
26
|
'@symbo.ls/dropdown',
|
|
27
27
|
'@symbo.ls/editorjs',
|
|
28
28
|
'@symbo.ls/field',
|
|
29
|
+
'@symbo.ls/helmet',
|
|
29
30
|
'@symbo.ls/form',
|
|
30
31
|
'@symbo.ls/google-maps',
|
|
31
|
-
'@symbo.ls/helmet',
|
|
32
32
|
'@symbo.ls/icon',
|
|
33
33
|
'@symbo.ls/indicator',
|
|
34
34
|
'@symbo.ls/input',
|
|
35
35
|
'@symbo.ls/label',
|
|
36
36
|
'@symbo.ls/link',
|
|
37
|
-
'@symbo.ls/markdown',
|
|
38
37
|
'@symbo.ls/list',
|
|
38
|
+
'@symbo.ls/markdown',
|
|
39
39
|
'@symbo.ls/modal',
|
|
40
40
|
'@symbo.ls/notification',
|
|
41
41
|
'@symbo.ls/paragraphbutton',
|
|
42
42
|
'@symbo.ls/pills',
|
|
43
43
|
'@symbo.ls/progress',
|
|
44
44
|
'@symbo.ls/range',
|
|
45
|
-
'@symbo.ls/select',
|
|
46
45
|
'@symbo.ls/sidebar',
|
|
46
|
+
'@symbo.ls/select',
|
|
47
47
|
'@symbo.ls/slider',
|
|
48
48
|
'@symbo.ls/sociallink',
|
|
49
49
|
'@symbo.ls/steps',
|
|
50
50
|
'@symbo.ls/tab',
|
|
51
51
|
'@symbo.ls/table',
|
|
52
52
|
'@symbo.ls/threejs',
|
|
53
|
-
'@symbo.ls/titleparagraph',
|
|
54
53
|
'@symbo.ls/timepicker',
|
|
54
|
+
'@symbo.ls/titleparagraph',
|
|
55
55
|
'@symbo.ls/tooltip',
|
|
56
|
-
'@symbo.ls/upload',
|
|
57
56
|
'@symbo.ls/unitvalue',
|
|
57
|
+
'@symbo.ls/upload',
|
|
58
58
|
'@symbo.ls/user',
|
|
59
59
|
'@symbo.ls/video',
|
|
60
|
-
'@symbo.ls/feather-icons',
|
|
61
60
|
'@symbo.ls/default-icons',
|
|
62
|
-
'@symbo.ls/
|
|
61
|
+
'@symbo.ls/feather-icons',
|
|
63
62
|
'@symbo.ls/fluent-icons',
|
|
63
|
+
'@symbo.ls/material-icons',
|
|
64
64
|
'@symbo.ls/react-atoms',
|
|
65
65
|
'@symbo.ls/react-box',
|
|
66
66
|
'@symbo.ls/react-button',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.223",
|
|
4
4
|
"description": "Fetch your Symbols configuration",
|
|
5
5
|
"main": "bin/fetch.js",
|
|
6
6
|
"author": "Symbols",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@symbo.ls/convert": "latest"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "01223dd4b02f667f19234bfc0d353ed48c93703f"
|
|
31
31
|
}
|