Browse Source

ci: remove xo

master
Kiko Beats 3 years ago
parent
commit
15369ec7bd
No known key found for this signature in database GPG Key ID: 8FA93B22CCF04B96
  1. 15
      package.json
  2. 2
      packages/keyv-mongo/package.json
  3. 2
      packages/keyv-mysql/package.json
  4. 4
      packages/keyv-postgres/package.json
  5. 2
      packages/keyv-redis/package.json
  6. 2
      packages/keyv-sql/package.json
  7. 2
      packages/keyv-sqlite/package.json
  8. 5
      packages/keyv-test-suite/package.json
  9. 4
      packages/keyv/package.json

15
package.json

@ -1,9 +1,8 @@
{ {
"name": "@keyvhq/mono", "name": "@keyvhq/monorepo",
"private": "true", "private": "true",
"devDependencies": { "devDependencies": {
"ava": "^3.15.0", "ava": "^3.15.0",
"coveralls": "^3.0.0",
"delay": "^4.3.0", "delay": "^4.3.0",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"knex": "^0.95.4", "knex": "^0.95.4",
@ -18,8 +17,16 @@
}, },
"author": "Jytesh & Kikobeats", "author": "Jytesh & Kikobeats",
"scripts": { "scripts": {
"test": "lerna run test", "clean": "lerna clean --yes && rm -rf node_modules",
"coverage": "nyc report --reporter=text-lcov | npx coveralls" "contributors": "(lerna exec finepack --parallel && git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"install": "lerna bootstrap --no-ci --force-local",
"lint": "standard-markdown README.md && standard",
"prerelease": "npm run contributors",
"pretest": "npm run lint",
"release": "lerna publish --yes --sort --conventional-commits -m \"chore(release): %s\" --create-release github",
"test": "lerna exec npm run test",
"update": "lerna exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "lerna exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

2
packages/keyv-mongo/package.json

@ -32,7 +32,7 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava" "test": "nyc --temp-dir ../../.nyc_output ava"
}, },
"license": "MIT", "license": "MIT",
"ava": { "ava": {

2
packages/keyv-mysql/package.json

@ -33,7 +33,7 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava" "test": "nyc --temp-dir ../../.nyc_output ava"
}, },
"license": "MIT", "license": "MIT",
"ava": { "ava": {

4
packages/keyv-postgres/package.json

@ -33,12 +33,12 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava --serial" "test": "nyc --temp-dir ../../.nyc_output ava --serial"
}, },
"license": "MIT", "license": "MIT",
"ava": { "ava": {
"require": [ "require": [
"requirable" "requirable"
] ]
} },
} }

2
packages/keyv-redis/package.json

@ -32,7 +32,7 @@
], ],
"scripts": { "scripts": {
"posttest:docker": "docker-compose down --rmi local", "posttest:docker": "docker-compose down --rmi local",
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava", "test": "nyc --temp-dir ../../.nyc_output ava",
"test:docker": "docker-compose up --build --abort-on-container-exit --exit-code-from test" "test:docker": "docker-compose up --build --abort-on-container-exit --exit-code-from test"
}, },
"license": "MIT", "license": "MIT",

2
packages/keyv-sql/package.json

@ -27,7 +27,7 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava" "test": "nyc --temp-dir ../../.nyc_output ava"
}, },
"license": "MIT", "license": "MIT",
"ava": { "ava": {

2
packages/keyv-sqlite/package.json

@ -33,7 +33,7 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava" "test": "nyc --temp-dir ../../.nyc_output ava"
}, },
"license": "MIT", "license": "MIT",
"ava": { "ava": {

5
packages/keyv-test-suite/package.json

@ -34,6 +34,7 @@
"release:major": "npm test && npm version major -m \"chore: release\" && git push origin master --tags && npm publish --access public", "release:major": "npm test && npm version major -m \"chore: release\" && git push origin master --tags && npm publish --access public",
"release:minor": "npm test && npm version minor -m \"chore: release\" && git push origin master --tags && npm publish --access public", "release:minor": "npm test && npm version minor -m \"chore: release\" && git push origin master --tags && npm publish --access public",
"release:patch": "npm test && npm version patch -m \"chore: release\" && git push origin master --tags && npm publish --access public", "release:patch": "npm test && npm version patch -m \"chore: release\" && git push origin master --tags && npm publish --access public",
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava" "test": "nyc --temp-dir ../../.nyc_output ava"
} },
"license": "MIT"
} }

4
packages/keyv/package.json

@ -26,8 +26,8 @@
"src" "src"
], ],
"scripts": { "scripts": {
"test": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava test/keyv.js", "test": "nyc --temp-dir ../../.nyc_output ava test/keyv.js",
"test:full": "standard && nyc --no-clean --temp-dir ../../.nyc_output ava --serial" "test:full": "nyc --temp-dir ../../.nyc_output ava --serial"
}, },
"license": "MIT" "license": "MIT"
} }

Loading…
Cancel
Save