UNPKG

@naxodev/gonx

Version:

Modern Nx plugin to use Go in a Nx workspace

19 lines 491 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.build = void 0; const build = () => ({ executor: '@naxodev/gonx:build', cache: true, dependsOn: ['generate'], inputs: [ '{projectRoot}/go.mod', '{projectRoot}/go.sum', '{projectRoot}/**/*.{go}', ], options: { outputPath: 'dist/{projectRoot}/', }, outputs: ['{options.outputPath}'], }); exports.build = build; //# sourceMappingURL=build.js.map