Skip to content

Commit

Permalink
Merge branch 'release/2.16.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vmalloc committed Apr 7, 2019
2 parents 81aa4f5 + e97e0ba commit 95856fb
Show file tree
Hide file tree
Showing 42 changed files with 336 additions and 1,166 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 2.16.1

* UI fixes and corrections

## Version 2.16.0

* Major UI overhaul
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ testdb:
pipenv run manage db upgrade

clean:
rm -rf .env webapp/tmp/ webapp/node_modules/ webapp/bower_components/ static
rm -rf .env webapp/tmp/ webapp/node_modules/ static
find . -name "*.pyc" -delete
4 changes: 1 addition & 3 deletions _lib/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

_NPM_PREFIX = from_project_root('.env/npm')
_EMBER_EXECUTABLE = os.path.join(_NPM_PREFIX, 'bin', 'ember')
_BOWER_EXECUTABLE = os.path.join(_NPM_PREFIX, 'bin', 'bower')

_logger = logbook.Logger(__name__)

Expand Down Expand Up @@ -49,9 +48,8 @@ def _bootstrap_frontend():
from_env("frontend.timestamp"), ["webapp/package.json"]) as uptodate:
if not uptodate:
_logger.info("Bootstrapping frontend environment...")
_execute("npm install -g ember-cli bower")
_execute("npm install -g ember-cli")
_execute("npm install")
_execute("{} install --allow-root".format(_BOWER_EXECUTABLE))

@contextmanager
def _get_timestamp_update_context(timestamp_path, paths):
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:8 as frontend-builder
# build frontend
RUN npm install -g ember-cli bower
RUN npm install -g ember-cli

ADD ./webapp/ /frontend/
RUN cd /frontend/ && yarn install && bower install --allow-root
RUN cd /frontend/ && yarn install
RUN cd /frontend/ && node_modules/.bin/ember build --environment production

FROM ekidd/rust-musl-builder:stable as rust-builder
Expand Down
4 changes: 0 additions & 4 deletions webapp/.bowerrc

This file was deleted.

1 change: 0 additions & 1 deletion webapp/app/application/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
{{#nav.dropdown as |dd|}}
{{#dd.toggle}}Debug{{/dd.toggle}}
{{#dd.menu as |ddm|}}
{{#ddm.item}}{{#ddm.link-to "component-proofing"}}Component Proofing{{/ddm.link-to}}{{/ddm.item}}
{{#ddm.item}}<a href="/styleguide" class="dropdown-item">Style Guide...</a>{{/ddm.item}}
{{/dd.menu}}
{{/nav.dropdown}}
Expand Down
47 changes: 0 additions & 47 deletions webapp/app/component-proofing/controller.js

This file was deleted.

135 changes: 0 additions & 135 deletions webapp/app/component-proofing/route.js

This file was deleted.

Loading

0 comments on commit 95856fb

Please sign in to comment.