Commits on Source (13)
-
Bastien DUMONT authored28ef8558
-
Rémi PAILHAREY authored074e8423
-
Rémi PAILHAREY authored
chore: update node 20 + refactor dependencies See merge request !37
351e35ee -
Bastien DUMONT authored
fix(data): aborts if no data See merge request !39
ba4784f2 -
Bastien DUMONT authored47de303a
-
Bastien DUMONT authored
chore(logs): add better log & add login See merge request !38
33563f3b -
Pierre Ecarlat authorede15e17c8
-
Pierre Ecarlat authored
feat(SAU): Add the instance name as a Sentry tag See merge request !40
cf35c200 -
Rémi PAILHAREY authored0a89b868
-
Rémi PAILHAREY authoredf8c4c156
-
Rémi PAILHAREY authored
feat: update prices See merge request !41
f33bbb1c -
Rémi PAILHAREY authored92cea9c1
-
Rémi PAILHAREY authored
Showing
- .eslintignore 2 additions, 0 deletions.eslintignore
- .eslintrc 12 additions, 0 deletions.eslintrc
- .gitlab-ci.yml 11 additions, 11 deletions.gitlab-ci.yml
- .node-version 1 addition, 0 deletions.node-version
- .prettierrc 1 addition, 1 deletion.prettierrc
- CHANGELOG.md 13 additions, 0 deletionsCHANGELOG.md
- babel.config.json 12 additions, 0 deletionsbabel.config.json
- konnector-dev-config.example.json 8 additions, 3 deletionskonnector-dev-config.example.json
- manifest.konnector 1 addition, 1 deletionmanifest.konnector
- package.json 10 additions, 35 deletionspackage.json
- src/helpers/format.js 1 addition, 1 deletionsrc/helpers/format.js
- src/helpers/format.spec.js 1 addition, 1 deletionsrc/helpers/format.spec.js
- src/helpers/prices.js 59 additions, 0 deletionssrc/helpers/prices.js
- src/helpers/prices.spec.js 76 additions, 0 deletionssrc/helpers/prices.spec.js
- src/helpers/utils.js 6 additions, 2 deletionssrc/helpers/utils.js
- src/index.js 156 additions, 146 deletionssrc/index.js
- src/instrument.js 13 additions, 0 deletionssrc/instrument.js
- src/types/types.js 9 additions, 0 deletionssrc/types/types.js
- webpack.config.js 1 addition, 68 deletionswebpack.config.js
- yarn.lock 3139 additions, 3799 deletionsyarn.lock
.eslintignore
0 → 100644
.eslintrc
0 → 100644
.node-version
0 → 100644
babel.config.json
0 → 100644
{ | ||
"name": "egl", | ||
"version": "1.2.5", | ||
"version": "1.3.0", | ||
"description": "", | ||
"repository": { | ||
"type": "git", | ||
... | ... | @@ -10,58 +10,33 @@ |
"author": "Grand Lyon", | ||
"license": "AGPL-3.0", | ||
"main": "./src/index.js", | ||
"eslintConfig": { | ||
"extends": [ | ||
"cozy-app" | ||
] | ||
}, | ||
"eslintIgnore": [ | ||
"build" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint" | ||
} | ||
}, | ||
"scripts": { | ||
"start": "node ./src/index.js", | ||
"dev": "cozy-konnector-dev", | ||
"standalone": "cozy-konnector-standalone", | ||
"lint": "eslint src --fix", | ||
"pretest": "npm run clean", | ||
"check": "konitor check .", | ||
"test": "jest", | ||
"test:cov": "jest --coverage", | ||
"clean": "rm -rf ./data", | ||
"build": "webpack", | ||
"lint": "eslint --fix .", | ||
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build}", | ||
"deploy-dev": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build-dev}", | ||
"cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})", | ||
"travisDeployKey": "./bin/generate_travis_deploy_key" | ||
}, | ||
"dependencies": { | ||
"@sentry/node": "7.30.0", | ||
"@sentry/tracing": "7.30.0", | ||
"axios": "1.2.2", | ||
"cozy-konnector-libs": "4.56.4", | ||
"jest": "^29.7.0", | ||
"@sentry/node": "8.8.0", | ||
"@sentry/tracing": "7.114.0", | ||
"axios": "1.7.2", | ||
"cozy-konnector-libs": "^5.11.0", | ||
"luxon": "^3.4.3" | ||
}, | ||
"devDependencies": { | ||
"copy-webpack-plugin": "6.1.1", | ||
"cozy-app-publish": "0.25.0", | ||
"cozy-jobs-cli": "1.20.2", | ||
"cozy-konnector-build": "1.4.4", | ||
"eslint": "5.16.0", | ||
"eslint-config-cozy-app": "1.6.0", | ||
"eslint-plugin-prettier": "3.0.1", | ||
"git-directory-deploy": "1.5.1", | ||
"husky": "4.3.0", | ||
"cozy-jobs-cli": "^2.4.2", | ||
"cozy-konnector-build": "^1.7.0", | ||
"jest": "^29.7.0", | ||
"jest-junit": "^16.0.0", | ||
"konitor": "0.10.2", | ||
"standard-version": "^9.5.0", | ||
"svgo": "1.3.2", | ||
"webpack": "5.75.0", | ||
"webpack-cli": "5.0.1" | ||
"standard-version": "^9.5.0" | ||
} | ||
} |
src/helpers/prices.js
0 → 100644
src/helpers/prices.spec.js
0 → 100644
src/instrument.js
0 → 100644
This diff is collapsed.