Skip to content

Commit

Permalink
Merge branch 'release/1.2.23' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Sep 20, 2022
2 parents 9b29183 + a7acf0c commit ee0a5e2
Show file tree
Hide file tree
Showing 43 changed files with 3,577 additions and 2,879 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Transcoder Changelog

## 1.2.23 - 2022.09.20
### Changed
* Move to using `ServicesTrait` and add getter methods for services
* Pinned `vitepress` to `^0.22.4` pending official `1.0.0` release
* Add comments to `Makefile`s for Fig
* Use Vite `^3.1.0` & rebuild assets
* Add `allow-plugins` to `composer.json` to allow CI tests to function

## 1.2.22 - 2022.04.09
### Changed
* Added `synchronous` & `stripMetadata` to the parameters that should be excluded from the generated file name
Expand Down
6 changes: 6 additions & 0 deletions buildchain/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,30 @@ DOCKERRUN=docker container run \

.PHONY: build dev docker install clean npm

# Build the production assets
build: docker install
${DOCKERRUN} \
run build
# Start up the dev server
dev: docker install
${DOCKERRUN} \
run dev
# Start the Docker container
docker:
docker build \
. \
-t ${CONTAINER}:${TAG} \
--build-arg TAG=${TAG} \
--no-cache
# Run an npm install
install: docker
${DOCKERRUN} \
install
# Remove node_modules/* & package-lock.json
clean:
rm -rf node_modules/
rm -f package-lock.json
# Run the passed in npm command
npm: docker
${DOCKERRUN} \
$(filter-out $@,$(MAKECMDGOALS))
Expand Down
Loading

0 comments on commit ee0a5e2

Please sign in to comment.