Fix various deps, including getting the create module working again
This commit is contained in:
parent
d88f18967a
commit
bca93545b4
|
@ -7,7 +7,7 @@
|
|||
"@babel/plugin-transform-react-jsx": "^7.10.1",
|
||||
"@babel/preset-env": "^7.10.2",
|
||||
"lerna": "^3.22.1",
|
||||
"mocha": "^5.2.0",
|
||||
"mocha": "^7.2.0",
|
||||
"nyc": "^14.1.1",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.11"
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
"prepare": "which redo >/dev/null && redo || ../../do"
|
||||
},
|
||||
"dependencies": {
|
||||
"@oclif/command": "^1.5.6",
|
||||
"@oclif/command": "^1",
|
||||
"@oclif/config": "^1",
|
||||
"@oclif/plugin-help": "^2",
|
||||
"unzip": "^0.1.11"
|
||||
"unzipper": "^0.10.11"
|
||||
},
|
||||
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/master/packages/create",
|
||||
"license": "GPL-3.0+",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const {Command, flags} = require('@oclif/command')
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
const unzip = require('unzip');
|
||||
const unzip = require('unzipper');
|
||||
|
||||
class SyndicateLangCreateCommand extends Command {
|
||||
async run() {
|
||||
|
|
Loading…
Reference in New Issue