Fix various deps, including getting the create module working again

This commit is contained in:
Tony Garnock-Jones 2020-06-10 13:08:36 +02:00
parent d88f18967a
commit bca93545b4
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
"@babel/plugin-transform-react-jsx": "^7.10.1", "@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/preset-env": "^7.10.2", "@babel/preset-env": "^7.10.2",
"lerna": "^3.22.1", "lerna": "^3.22.1",
"mocha": "^5.2.0", "mocha": "^7.2.0",
"nyc": "^14.1.1", "nyc": "^14.1.1",
"webpack": "^4.43.0", "webpack": "^4.43.0",
"webpack-cli": "^3.3.11" "webpack-cli": "^3.3.11"

View File

@ -10,10 +10,10 @@
"prepare": "which redo >/dev/null && redo || ../../do" "prepare": "which redo >/dev/null && redo || ../../do"
}, },
"dependencies": { "dependencies": {
"@oclif/command": "^1.5.6", "@oclif/command": "^1",
"@oclif/config": "^1", "@oclif/config": "^1",
"@oclif/plugin-help": "^2", "@oclif/plugin-help": "^2",
"unzip": "^0.1.11" "unzipper": "^0.10.11"
}, },
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/master/packages/create", "homepage": "https://github.com/syndicate-lang/syndicate-js/tree/master/packages/create",
"license": "GPL-3.0+", "license": "GPL-3.0+",

View File

@ -1,7 +1,7 @@
const {Command, flags} = require('@oclif/command') const {Command, flags} = require('@oclif/command')
const path = require('path'); const path = require('path');
const fs = require('fs'); const fs = require('fs');
const unzip = require('unzip'); const unzip = require('unzipper');
class SyndicateLangCreateCommand extends Command { class SyndicateLangCreateCommand extends Command {
async run() { async run() {