-
Notifications
You must be signed in to change notification settings - Fork 5
Feature/npm refactor #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
13ae909
Add a dark theme for the browser UI.
sampsapenna b41b387
Begin refactor to use npm.
sampsapenna d98be5a
Fix routing after changing to npm
sampsapenna e23aa6c
Finish migration from static web content to build with npm.
sampsapenna 90be2a6
Change webpack built UI to be the actual UI.
sampsapenna cc095c5
Add styles after migrating to webpack
sampsapenna 849aae0
Improve folder structure.
sampsapenna b270368
Fix tests after refactor
sampsapenna b53a040
Add theme css files, to use in the future.
sampsapenna 441a61e
Add frontend html/js build to travis.yml.
sampsapenna a4adf8a
Update README after changing installation behaviour
sampsapenna d875c13
Remove old dark theme css from routes.
sampsapenna b3e9ff8
Fix incorrect folder in setd patch
sampsapenna b3130bf
Improve tests
sampsapenna ded14ff
refactor tests folders
blankdots 24317e7
change tox config
blankdots 0d08eac
small update in docs
blankdots 632a65a
remove gitlab ci, as not supported anymore
blankdots 616b461
misses in tox for docs and pydocstyle
blankdots 5dc0ad3
Merge pull request #27 from CSCfi/refactor/tests-folders
sampsapenna 5316cb3
Fix linter errors in JS.
sampsapenna 3f0ccf6
Bump package.json to correct version.
sampsapenna b10d44c
Remove old frontend folder.
sampsapenna f0c9a63
Improve language used in the UI
sampsapenna bc7f858
docker stage for frontend node.js build
blankdots 70be0e5
Merge pull request #28 from CSCfi/feature/docker-update
blankdots f99b40e
add travis npm stage
blankdots a454c81
package-lock version
blankdots File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| ../swift_browser_ui_frontend | ||
| ../swift_browser_ui_frontend/dist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| { | ||
| "env": { | ||
| "browser": true, | ||
| "es6": true | ||
| }, | ||
| "extends": [ | ||
| "eslint:recommended", | ||
| "plugin:vue/essential", | ||
| "plugin:vue/base", | ||
| "plugin:vue/strongly-recommended", | ||
| "plugin:vue/recommended" | ||
| ], | ||
| "globals": { | ||
| "Atomics": "readonly", | ||
| "SharedArrayBuffer": "readonly" | ||
| }, | ||
| "parserOptions": { | ||
| "ecmaVersion": 2018, | ||
| "sourceType": "module" | ||
| }, | ||
| "plugins": [ | ||
| "vue" | ||
| ], | ||
| "rules": { | ||
| "indent": [ | ||
| "error", | ||
| 2, | ||
| { | ||
| "SwitchCase": 1 | ||
| } | ||
| ], | ||
| "linebreak-style": [ | ||
| "error", | ||
| "unix" | ||
| ], | ||
| "quotes": [ | ||
| "error", | ||
| "double" | ||
| ], | ||
| "semi": [ | ||
| "error", | ||
| "always" | ||
| ], | ||
| "comma-dangle": [ | ||
| "error", | ||
| "always-multiline" | ||
| ], | ||
| "max-len": ["error", { | ||
| "code": 80, | ||
| "comments": 75, | ||
| "ignoreTemplateLiterals": true, | ||
| "ignoreUrls": true | ||
| }], | ||
| // Vue rules here | ||
| "vue/html-closing-bracket-newline": ["error", { | ||
| "singleline": "never", | ||
| "multiline": "always" | ||
| }], | ||
| "vue/mustache-interpolation-spacing": ["error", "always"], | ||
| "vue/script-indent": ["error", 2, { | ||
| "baseIndent": 0, | ||
| "switchCase": 1 | ||
| }], | ||
| "vue/require-prop-types": [0] | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.