Skip to content

Commit

Permalink
Published
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Nov 5, 2019
1 parent ead27b2 commit 1bd683e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2,409 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# codelympics cli

[![CI Status](https://github.com/codelympicsdev/cli/workflows/ci/badge.svg)](https://github.com/codelympicsdev/cli/actions)

# codelympics cli

This is the CLI for https://codelympics.dev.

## installation
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
{
"name": "codelympics-cli",
"version": "0.1.0",
"main": "index.js",
"name": "@codelympics/cli",
"version": "0.1.2",
"main": "lib/index.js",
"license": "MIT",
"bin": {
"codelympics": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"start": "clear; node lib/src/index.js",
"compile": "pkg --targets node12-linux-x64,node12-macos-x64,node12-win-x64 -o codelympics lib/src/index.js"
"prepack": "npm run build",
"build": "tsc && mv lib/src lib__ && rm -rf lib && mv lib__ lib",
"start": "clear; node lib/index.js",
"compile": "pkg --targets node12-linux-x64,node12-macos-x64,node12-win-x64 -o codelympics lib/index.js"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
Expand Down
Loading

0 comments on commit 1bd683e

Please sign in to comment.