0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Added yarn lint to Admin

refs https://github.com/TryGhost/Toolbox/issues/365

- without this, `yarn lint` from the monorepo will fail because there is
  no script in this directory
This commit is contained in:
Daniel Lockyer 2022-08-03 16:08:21 +02:00
parent b12b1c9290
commit 425473ff88
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -20,7 +20,8 @@
"build": "ember build",
"test": "ember exam --split 2 --parallel",
"lint:js": "eslint .",
"lint:hbs": "ember-template-lint ."
"lint:hbs": "ember-template-lint .",
"lint": "yarn lint:js && yarn lint:hbs"
},
"engines": {
"node": "^14.17.0 || ^16.13.0"