chore: remove js-green-licenses (#7201)

This commit is contained in:
Rachel Fenichel
2023-06-27 13:36:06 -07:00
committed by GitHub
parent 452abd4b93
commit e2cd1bad24
4 changed files with 0 additions and 998 deletions

View File

@@ -1,22 +0,0 @@
/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Gulp tasks to check the licenses of Blockly dependencies.
*/
const jsgl = require('js-green-licenses');
function checkLicenses() {
const checker = new jsgl.LicenseChecker();
checker.setDefaultHandlers();
return checker.checkLocalDirectory('.');
};
module.exports = {
// Manually-invokable targets, with prerequisites where required.
checkLicenses: checkLicenses
};