Skip to content

Commit 0dc7444

Browse files
committed
refactor: migrate to frontend-base
BREAKING CHANGE: refactors the template app for frontend-base.
1 parent ea14922 commit 0dc7444

Some content is hidden

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

44 files changed

+6850
-6911
lines changed

.dockerignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.env

Lines changed: 0 additions & 22 deletions
This file was deleted.

.env.development

Lines changed: 0 additions & 23 deletions
This file was deleted.

.env.test

Lines changed: 0 additions & 21 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
run: npm run lint
2626
- name: Test
2727
run: npm run test
28-
- name: Build
29-
run: npm run build
3028
- name: i18n_extract
3129
run: npm run i18n_extract
3230
- name: Coverage

.gitignore

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
.DS_Store
2-
.eslintcache
3-
.idea
41
node_modules
52
npm-debug.log
63
coverage
74
module.config.js
8-
95
dist/
10-
src/i18n/transifex_input.json
11-
temp/babel-plugin-react-intl
6+
/*.tgz
127

13-
### pyenv ###
14-
.python-version
8+
### i18n ###
9+
src/i18n/transifex_input.json
1510

16-
### Emacs ###
11+
### Editors ###
12+
.DS_Store
1713
*~
1814
/temp
1915
/.vscode

.npmignore

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
.eslintignore
2-
.eslintrc.json
3-
.gitignore
4-
.travis.yml
5-
docker-compose.yml
6-
Dockerfile
7-
Makefile
8-
npm-debug.log
9-
10-
coverage
1+
__mocks__
112
node_modules
12-
public
3+
*.test.js
4+
*.test.jsx
5+
*.test.ts
6+
*.test.tsx

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,9 @@ pull_translations:
3434
mkdir src/i18n/messages
3535
cd src/i18n/messages \
3636
&& atlas pull $(ATLAS_OPTIONS) \
37-
translations/frontend-platform/src/i18n/messages:frontend-platform \
37+
translations/frontend-base/src/i18n/messages:frontend-base \
3838
translations/paragon/src/i18n/messages:paragon \
39-
translations/frontend-component-footer/src/i18n/messages:frontend-component-footer \
40-
translations/frontend-component-header/src/i18n/messages:frontend-component-header \
4139
translations/frontend-template-application/src/i18n/messages:frontend-template-application
4240

43-
$(intl_imports) frontend-platform paragon frontend-component-header frontend-component-footer frontend-template-application
41+
$(intl_imports) frontend-base paragon frontend-component-header frontend-component-footer frontend-template-application
4442

0 commit comments

Comments
 (0)