Skip to content

Commit d0318b8

Browse files
authored
include recursive assets (#231)
* include recursive assets * update changelog
1 parent 295693c commit d0318b8

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

.github/workflows/workflow.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,13 @@ jobs:
139139
echo "---- Contents: ui ----"
140140
ls -lah ${{ github.workspace }}/ui/build/browser/* # just a sanity check since angular changed the structure
141141
cp -r ${{ github.workspace }}/ui/build/browser/* ${{ github.workspace }}/mmpm/ui
142+
# sanity checks since angular changed the output structure
142143
echo "---- Contents: mmpm/ui ----"
143-
ls -lah ${{ github.workspace }}/mmpm/ui # just a sanity check since angular changed the structure
144+
ls -lah ${{ github.workspace }}/mmpm/ui
145+
echo "---- Contents: mmpm/ui/media ----"
146+
ls -lah ${{ github.workspace }}/mmpm/ui/media
147+
echo "---- Contents: mmpm/ui/assets ----"
148+
ls -lah ${{ github.workspace }}/mmpm/ui/assets
144149
poetry build
145150
146151
- name: Cache MMPM Artifacts

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,3 +364,7 @@
364364
## Version 4.2.4
365365

366366
- typo in package.py
367+
368+
## Version 4.2.5
369+
370+
- include assets recursively

mmpm/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
major = 4
22
minor = 2
3-
patch = 4
3+
patch = 5
44

55
version = f"{major}.{minor}.{patch}"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mmpm"
3-
version = "4.2.4"
3+
version = "4.2.5"
44
description = "MMPM, the MagicMirror Package Manager CLI simplifies the installation, removal, and general maintenance of MagicMirror packages"
55

66
authors = [
@@ -59,4 +59,4 @@ black = "^24.10.0"
5959
isort = "^5.13.2"
6060

6161
[tool.poetry]
62-
include = [{ path = "mmpm/ui/*", format = ["sdist", "wheel"] }]
62+
include = [{ path = "mmpm/ui/**/*", format = ["sdist", "wheel"] }]

0 commit comments

Comments
 (0)