Skip to content

Commit

Permalink
Main path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Cardona committed Mar 6, 2019
1 parent f3e7383 commit 968e689
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
@@ -1,7 +1,8 @@
{
"root": true,
"parserOptions": {
"ecmaVersion": 2018
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["prettier"],
"rules": {
Expand Down
2 changes: 0 additions & 2 deletions gulpfile.js
@@ -1,5 +1,3 @@
"use strict"

const gulp = require("gulp")
const fs = require("fs-extra")

Expand Down
4 changes: 1 addition & 3 deletions index.js
@@ -1,6 +1,4 @@
#!/usr/bin/env node
"use strict"

require("babel-register")
const path = require("path")
const program = require("commander")
Expand All @@ -15,7 +13,7 @@ const repl = require("repl")
const SLP = require("./lib/SLP")
const clone = require("git-clone")

program.version("3.0.2", "-v, --version")
program.version("3.0.3", "-v, --version")

program
.command("new <name>")
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,8 +1,8 @@
{
"name": "slp-sdk",
"version": "3.0.2",
"version": "3.0.3",
"description": "SLP SDK powered by BITBOX",
"main": "SLP",
"main": "lib/SLP",
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js build && ./node_modules/typescript/bin/tsc",
"test": "TEST=unit nyc --reporter=text mocha --require babel-core/register --timeout 10000 test/",
Expand Down

0 comments on commit 968e689

Please sign in to comment.