Skip to content

Commit

Permalink
upper case file issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericHeem committed Jun 23, 2019
1 parent 58565b3 commit f6eda6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Expand Up @@ -12,7 +12,7 @@
"lint": "tslint -c tslint.json './src/**/*.{js,jsx,ts,tsx}'",
"cpd": "jscpd",
"prebuild": "npm run lint && npm run cpd",
"build": "webpack --config webpack.prod.js --progress",
"build": "webpack --config webpack.prod.js",
"clean": "rimraf dist coverage",
"test": "karma start --single-run --no-auto-watch karma.conf.js",
"test:watch": "karma start --auto-watch --no-single-run karma.conf.js",
Expand Down
2 changes: 1 addition & 1 deletion client/src/app_public/routes.js
Expand Up @@ -33,7 +33,7 @@ export default ({context}) => [
createPart({
name: "hello",
context,
partCreate: await import("parts/hello/hello"),
partCreate: await import("parts/hello/Hello"),
routerContext
})
},
Expand Down
2 changes: 1 addition & 1 deletion client/src/app_user/UserApp.js
@@ -1,6 +1,6 @@
import Context from "../context";
import App from "../app";
import layout from "./layout";
import layout from "./Layout";
import createRoutes from "./routes";

export default async () => {
Expand Down
2 changes: 1 addition & 1 deletion deploy/ansible/roles/api/tasks/main.yml
Expand Up @@ -44,7 +44,7 @@

#Frontend
- name: Copy client config
template: src=config.js.j2 dest={{ api_dir }}/client/src/app/config.js
template: src=config.js.j2 dest={{ api_dir }}/client/src/config.js
become: yes
become_user: "{{ ansible_ssh_user }}"
tags: [fe]
Expand Down

0 comments on commit f6eda6c

Please sign in to comment.