@nxlv/python
Advanced tools
Comparing version 1.2.0 to 1.3.0
{ | ||
"name": "@nxlv/python", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Custom NX Plugin to support the Python language", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
import { Tree } from '@nrwl/devkit'; | ||
import { Schema } from './schema'; | ||
export interface NormalizedSchema extends Schema { | ||
projectName: string; | ||
projectRoot: string; | ||
moduleName: string; | ||
projectDirectory: string; | ||
parsedTags: string[]; | ||
} | ||
export declare function normalizeOptions(host: Tree, options: Schema): NormalizedSchema; | ||
declare function generator(host: Tree, options: Schema): Promise<() => void>; | ||
export default generator; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.normalizeOptions = void 0; | ||
const tslib_1 = require("tslib"); | ||
@@ -33,2 +34,3 @@ const devkit_1 = require("@nrwl/devkit"); | ||
} | ||
exports.normalizeOptions = normalizeOptions; | ||
function addFiles(host, options) { | ||
@@ -35,0 +37,0 @@ const templateOptions = Object.assign(Object.assign(Object.assign({}, options), (0, devkit_1.names)(options.name)), { offsetFromRoot: (0, devkit_1.offsetFromRoot)(options.projectRoot), template: '', dot: '.' }); |
Sorry, the diff of this file is not supported yet
141085
82
1533