Skip to content

Commit ee0a5e2

Browse files
author
Andrew Welch
committed
Merge branch 'release/1.2.23' into v1
2 parents 9b29183 + a7acf0c commit ee0a5e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3577
-2879
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Transcoder Changelog
22

3+
## 1.2.23 - 2022.09.20
4+
### Changed
5+
* Move to using `ServicesTrait` and add getter methods for services
6+
* Pinned `vitepress` to `^0.22.4` pending official `1.0.0` release
7+
* Add comments to `Makefile`s for Fig
8+
* Use Vite `^3.1.0` & rebuild assets
9+
* Add `allow-plugins` to `composer.json` to allow CI tests to function
10+
311
## 1.2.22 - 2022.04.09
412
### Changed
513
* Added `synchronous` & `stripMetadata` to the parameters that should be excluded from the generated file name

buildchain/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,30 @@ DOCKERRUN=docker container run \
1111

1212
.PHONY: build dev docker install clean npm
1313

14+
# Build the production assets
1415
build: docker install
1516
${DOCKERRUN} \
1617
run build
18+
# Start up the dev server
1719
dev: docker install
1820
${DOCKERRUN} \
1921
run dev
22+
# Start the Docker container
2023
docker:
2124
docker build \
2225
. \
2326
-t ${CONTAINER}:${TAG} \
2427
--build-arg TAG=${TAG} \
2528
--no-cache
29+
# Run an npm install
2630
install: docker
2731
${DOCKERRUN} \
2832
install
33+
# Remove node_modules/* & package-lock.json
2934
clean:
3035
rm -rf node_modules/
3136
rm -f package-lock.json
37+
# Run the passed in npm command
3238
npm: docker
3339
${DOCKERRUN} \
3440
$(filter-out $@,$(MAKECMDGOALS))

0 commit comments

Comments
 (0)