@codeleap/cli 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  Object.defineProperty(exports, "__esModule", { value: true });
3
4
  var cleye_1 = require("cleye");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "src/index.ts",
5
5
  "repository": "git@github.com:codeleap-uk/codeleap-lib.git",
6
6
  "author": "Paulo Henrique De Souza <paulosouza300272@gmail.com>",
@@ -14,7 +14,6 @@
14
14
  "scripts": {
15
15
  "build": "tsc --build",
16
16
  "lint": "./node_modules/.bin/eslint -c .eslintrc.js \"./src/**/*.{ts,tsx,js,jsx}\"",
17
- "publish": "npm publish",
18
17
  "dev:cli": "node dist/index.js",
19
18
  "start": "node dist/index.js"
20
19
  },
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { cli } from 'cleye'
2
3
  import { initCommand } from './commands/init'
3
4