Skip to content

Commit

Permalink
Use regular require statements for loading packages
Browse files Browse the repository at this point in the history
  • Loading branch information
leo committed Jan 12, 2017
1 parent 1898df0 commit c7b1cc8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Native
import path from 'path'
import {spawn} from 'child_process'
const path = require('path')
const {spawn} = require('child_process')

// Packages
import parser from 'minimist'
import pkginfo from 'pkginfo'
import loudRejection from 'loud-rejection'
import camelcase from 'camelcase'
import chalk from 'chalk'
const parser = require('minimist')
const pkginfo = require('pkginfo')
const loudRejection = require('loud-rejection')
const camelcase = require('camelcase')
const chalk = require('chalk')

class Args {
constructor() {
Expand Down

0 comments on commit c7b1cc8

Please sign in to comment.