oarepo-runtime 1.5.50__py3-none-any.whl → 1.5.51__py3-none-any.whl
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.
- oarepo_runtime/cli/assets.py +19 -4
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/METADATA +1 -1
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/RECORD +7 -7
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/LICENSE +0 -0
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/WHEEL +0 -0
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/entry_points.txt +0 -0
- {oarepo_runtime-1.5.50.dist-info → oarepo_runtime-1.5.51.dist-info}/top_level.txt +0 -0
oarepo_runtime/cli/assets.py
CHANGED
@@ -79,7 +79,7 @@ def enumerate_assets():
|
|
79
79
|
return aliases, asset_dirs
|
80
80
|
|
81
81
|
|
82
|
-
|
82
|
+
COMPONENT_LIST_RE = re.compile(
|
83
83
|
r"""
|
84
84
|
^
|
85
85
|
\s*
|
@@ -87,15 +87,29 @@ COMPONENT_RE = re.compile(
|
|
87
87
|
\s*
|
88
88
|
{
|
89
89
|
\s*
|
90
|
+
(
|
91
|
+
@import\s+["'](.*?)["']
|
92
|
+
\s*
|
93
|
+
;
|
94
|
+
)+
|
95
|
+
\s*
|
96
|
+
}""",
|
97
|
+
re.MULTILINE | re.DOTALL | re.VERBOSE,
|
98
|
+
)
|
99
|
+
|
100
|
+
COMPONENT_RE = re.compile(
|
101
|
+
r"""
|
102
|
+
\s*
|
90
103
|
@import\s+["'](.*?)["']
|
91
104
|
\s*
|
92
105
|
;
|
93
106
|
\s*
|
94
|
-
|
107
|
+
""",
|
95
108
|
re.MULTILINE | re.DOTALL | re.VERBOSE,
|
96
109
|
)
|
97
110
|
|
98
111
|
|
112
|
+
|
99
113
|
@assets.command(name="less-components")
|
100
114
|
@click.argument("output_file", default="-")
|
101
115
|
@with_appcontext
|
@@ -110,8 +124,9 @@ def less_components(output_file):
|
|
110
124
|
less_component_files.append(f)
|
111
125
|
components = set()
|
112
126
|
for cmp_file in less_component_files:
|
113
|
-
for
|
114
|
-
|
127
|
+
for component_list in COMPONENT_LIST_RE.findall(cmp_file.read_text()):
|
128
|
+
for s in COMPONENT_RE.findall(component_list[0]):
|
129
|
+
components.add(Path(s).stem)
|
115
130
|
data = {"components": list(sorted(components))}
|
116
131
|
if output_file == "-":
|
117
132
|
print(json.dumps(data, indent=4, ensure_ascii=False))
|
@@ -5,7 +5,7 @@ oarepo_runtime/profile.py,sha256=QzrQoZncjoN74ZZnpkEKakNk08KCzBU7m6y42RN8AMY,163
|
|
5
5
|
oarepo_runtime/proxies.py,sha256=NN_WNj1xuKc-OveoZmzvTFlUonNjSmLIGsv_JUcHGls,285
|
6
6
|
oarepo_runtime/uow.py,sha256=iyF3R2oCPSVUu38GXoxZallgRD-619q1fWTb8sSaeyQ,4412
|
7
7
|
oarepo_runtime/cli/__init__.py,sha256=daAODgUAB9Nb0O0Kg8vSgJIPKJm92EHMTRuoKwxBCug,373
|
8
|
-
oarepo_runtime/cli/assets.py,sha256=
|
8
|
+
oarepo_runtime/cli/assets.py,sha256=uKhR2ywDR3RgGyWXuE2X-YNG0Cx-QxXJxHkAJEVV-_Y,3589
|
9
9
|
oarepo_runtime/cli/base.py,sha256=94RBTa8TOSPxEyEUmYLGXaWen-XktP2-MIbTtZSlCZo,544
|
10
10
|
oarepo_runtime/cli/cf.py,sha256=W0JEJK2JqKubQw8qtZJxohmADDRUBode4JZAqYLDGvc,339
|
11
11
|
oarepo_runtime/cli/check.py,sha256=sCe2PeokSHvNOXHFZ8YHF8NMhsu5nYjyuZuvXHJ6X18,5092
|
@@ -119,9 +119,9 @@ oarepo_runtime/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
119
119
|
oarepo_runtime/utils/functools.py,sha256=gKS9YZtlIYcDvdNA9cmYO00yjiXBYV1jg8VpcRUyQyg,1324
|
120
120
|
oarepo_runtime/utils/path.py,sha256=V1NVyk3m12_YLbj7QHYvUpE1wScO78bYsX1LOLeXDkI,3108
|
121
121
|
tests/pkg_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
|
-
oarepo_runtime-1.5.
|
123
|
-
oarepo_runtime-1.5.
|
124
|
-
oarepo_runtime-1.5.
|
125
|
-
oarepo_runtime-1.5.
|
126
|
-
oarepo_runtime-1.5.
|
127
|
-
oarepo_runtime-1.5.
|
122
|
+
oarepo_runtime-1.5.51.dist-info/LICENSE,sha256=h2uWz0OaB3EN-J1ImdGJZzc7yvfQjvHVYdUhQ-H7ypY,1064
|
123
|
+
oarepo_runtime-1.5.51.dist-info/METADATA,sha256=N3Ifs2L5-w8j5mTyfuT3S1JzU2my5cyUJyoiLRDnQwc,4720
|
124
|
+
oarepo_runtime-1.5.51.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
125
|
+
oarepo_runtime-1.5.51.dist-info/entry_points.txt,sha256=QrlXAKuPDVBinaSh_v3yO9_Nb9ZNmJCJ0VFcCW-z0Jg,327
|
126
|
+
oarepo_runtime-1.5.51.dist-info/top_level.txt,sha256=bHhlkT1_RQC4IkfTQCqA3iN4KCB6cSFQlsXpQMSP-bE,21
|
127
|
+
oarepo_runtime-1.5.51.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|