Skip to content

Commit

Permalink
Drop short-lived 'make client-production' warning from build scripts,…
Browse files Browse the repository at this point in the history
… since we're not including these moving forward.
  • Loading branch information
dannon committed Feb 12, 2018
1 parent 6d00958 commit e13740a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ DOC_SOURCE_DIR=$(DOCS_DIR)/source
SLIDESHOW_DIR=$(DOC_SOURCE_DIR)/slideshow
OPEN_RESOURCE=bash -c 'open $$0 || xdg-open $$0'
SLIDESHOW_TO_PDF?=bash -c 'docker run --rm -v `pwd`:/cwd astefanutti/decktape /cwd/$$0 /cwd/`dirname $$0`/`basename -s .html $$0`.pdf'
CLIENT_COMMIT_WARNING="Please remember to 'make client-production' when finished developing, before a commit!"
YARN := $(shell command -v yarn 2> /dev/null)

all: help
Expand Down Expand Up @@ -148,7 +147,6 @@ endif

client: node-deps ## Rebuild client-side artifacts for local development.
cd client && yarn run build
@echo $(CLIENT_COMMIT_WARNING)

client-production: node-deps ## Rebuild client-side artifacts for a production deployment (or committing to the repository).
cd client && yarn run build-production
Expand All @@ -161,7 +159,6 @@ client-format: node-deps ## Reformat client code

client-watch: node-deps ## A useful target for parallel development building.
cd client && yarn run watch
@echo $(CLIENT_COMMIT_WARNING)

client-test: client ## Run qunit tests via Karma
cd client && yarn run test
Expand Down

0 comments on commit e13740a

Please sign in to comment.