UNPKG

@solidstate/hardhat-license-identifier

Version:
7 lines (6 loc) 304 B
import { TASK_LICENSE_LIST } from '../task_names.js'; import { task } from 'hardhat/config'; export default task(TASK_LICENSE_LIST) .setDescription('Print table of SPDX license identifiers in use by local source files') .setAction(import.meta.resolve('../actions/license_list.js')) .build();