fix(core): update

This commit is contained in:
2022-04-18 22:17:10 +02:00
parent 31bcc5f8c2
commit f2e91b8e1b
7 changed files with 34 additions and 37 deletions

View File

@ -1,4 +1,4 @@
import * as plugins from './projectinfo.plugins.js'
import * as plugins from './projectinfo.plugins.js';
// direct access to classes
export * from './projectinfo.classes.git.js';
@ -13,7 +13,7 @@ import { ProjectinfoNpm } from './projectinfo.classes.npm.js';
/**
* gets the name from package.json in a specified directory
*/
export let getNpmNameForDir = function(cwdArg) {
export let getNpmNameForDir = function (cwdArg) {
let localNpm = new ProjectinfoNpm(cwdArg);
if (localNpm.status === 'ok') {
return localNpm.name;