Files
Zoltán Bedi f22d77100f Chore: use jest without grunt (#28558)
* Chore: use jest without grunt

* Run no-focus-convey-tests and no-only-tests as well

* Update lib.star test-backend script with no-focus test to run first

* Lets see a failing test

* Revert "Lets see a failing test"

This reverts commit cb6c6ed67dd5403a16d4418aea3260ea8a286107.

* Update no-focus-convey test to a script

* Update scripts/lib.star

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>

* Update drone.yml

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
2020-11-09 15:14:04 +01:00

17 lines
363 B
JavaScript

module.exports = function(config, grunt) {
'use strict';
return {
eslint: {
command: 'yarn lint',
},
typecheckPackages: {
command: 'yarn packages:typecheck',
},
typecheckRoot: {
command: 'yarn typecheck',
},
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
};
};