Project clean up
2 unresolved threads
2 unresolved threads
- Clean up the project
- New folders:
- internal: for docker & build scripts, manifest
- src/views
- src/views/partials
- src/views/partials/widgets
- Widgets are imported on
src/views/partials/widgets.pug
instead of on each file requiring them (avoid dup after build) - Upgrade Cypress to 5.6
- Clean up the Readme
- Depreciate un-federated config.json in favor of the config.federated.json
- Use native pug config file for config.json import
- Use Parcel instead of custom scripts, bundling less things, smarter, faster and cleaner
- Split dependencies file into index.pug, dependencies.pug and context.pug
- Removed the need to call
[...]/index
on sass - Removed
cypress-terminal-report
dependency
Overall, is retro-compatible and should not have any impact on developments.
Please notice that the project is now using terser instead of babel.
Merge request reports
Activity
Filter activity
added 11 commits
-
b71ccabc...1d1f8de3 - 8 commits from branch
master
- 455d94cb - Merge remote-tracking branch 'origin/master' into feature/hubl-2
- 82362a4b - fix: context issue with account
- ecc6e112 - fix: package.json
Toggle commit list-
b71ccabc...1d1f8de3 - 8 commits from branch
added 10 commits
-
ecc6e112...1331350b - 9 commits from branch
master
- fa2fab33 - Merge branch 'master' into feature/hubl-2
-
ecc6e112...1331350b - 9 commits from branch
added 2 commits
- Resolved by Jean-Baptiste Pasquier
2 "xmpp": "https://jabber.happy-dev.fr/http-bind/", 2 "xmppWebsocket": "wss://jabber.happy-dev.fr/xmpp-websocket", 3 "clientName": "My local Hubl", 4 "clientLogo": "/images/logo.webp", 3 5 "authority": "http://localhost:8000/", 4 "authorityName": "djangoldp-server-name", 5 "clientName": "Hubl", 6 "clientLogo": "https://cdn.startinblox.com/logos/hubl-logo.png", 7 6 "endpoints": { 8 "groups": "http://localhost:8000/groups/", 9 "skills": "http://localhost:8000/skills/", 10 "users": "http://localhost:8000/users/" 7 "get": { 8 "skills": "http://localhost:8000/skills/", 9 "users": "http://localhost:8000/users/", 10 "groups": "http://localhost:8000/groups/" @jbpasquier : if you're wondering where the
groups
endpoint is coming from.
- internal/parcel.js 0 → 100644
22 sourceMaps: true, 23 hmrHostname: '', 24 detailedReport: false, 25 autoInstall: true 26 }; 27 28 (async function() { 29 if(!fs.existsSync("config.json")) throw "[Error] (Mandatory) Missing config.json file"; 30 31 let config = JSON.parse(fs.readFileSync('config.json')); 32 33 if(!config.clientName) throw "[Error] (Mandatory) Missing clientName on config.json"; 34 if(!config.clientLogo) throw "[Error] (Mandatory) Missing clientLogo on config.json"; 35 36 let manifest = { 37 "lang": "fr", added 8 commits
- 5b150933 - minor: contact implementation
- 6b1c8337 - Merge branch 'master' into release/contacts-implementation
- 55d33da9 - Update fr.json
- ed68caaf - Update en.json
- bfa319e1 - Update es.json
- e136c3f2 - Merge remote-tracking branch 'origin/master' into release/contacts-implementation
- 2b24a8a2 - sw force update
- 844bca85 - Merge branch 'release/contacts-implementation' into feature/hubl-2
Toggle commit list
Please register or sign in to reply