fix(dependencies): update

This commit is contained in:
2018-09-02 14:08:15 +02:00
parent 27aa9f7166
commit 9abe15f871
17 changed files with 886 additions and 188 deletions

View File

@ -1,4 +1,3 @@
import 'typings-global'
import plugins = require('./projectinfo.plugins')
// direct access to classes

View File

@ -1,4 +1,3 @@
import 'typings-global'
import plugins = require('./projectinfo.plugins')
export class ProjectinfoNpm {
isNpm: boolean = false

View File

@ -1,6 +1,13 @@
import 'typings-global'
export import path = require('path')
export import q = require('q')
export import smartfile = require('smartfile')
export import smartstring = require('smartstring')
export import smartpath = require('smartpath')
import * as path from 'path';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartfile from '@pushrocks/smartfile';
import * as smartstring from '@pushrocks/smartstring';
import * as smartpath from '@pushrocks/smartpath';
export {
path,
smartpromise,
smartfile,
smartstring,
smartpath
}