Skip to content

Commit

Permalink
Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinelliott committed Nov 25, 2019
1 parent 5c1051f commit 4b93e36
Show file tree
Hide file tree
Showing 29 changed files with 838 additions and 317 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/node_modules/
node_modules/
dist/
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
}
155 changes: 0 additions & 155 deletions bin/index.js

This file was deleted.

1 change: 1 addition & 0 deletions incompetent-shame-9068/boxel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"incompetent-shame-9068","version":"0.0.1","maintainer":{"email":"[email protected]","name":"Kevin Elliott"},"description":"REPLACE: Your description goes here","recipeFormat":{"type":"brl","version":"current"},"base":{"os":"boxos","version":"current","name":"BoxOS","upstream":{"os":"dietpi","version":"current","name":"DietPi"}},"system":{"network":{"type":"dhcp","firewall":[]},"devices":[],"data_path":"/data"},"components":[{"name":"flightaware-dump1090","image":"boxel/flightaware-dump1090:latest"}]}
52 changes: 45 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,65 @@
{
"name": "@boxel/boxel-cli",
"version": "0.0.04",
"version": "0.0.4",
"description": "Boxel Command Line Interface",
"main": "bin/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*",
"templates/*",
".env"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc",
"build:check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "yarn run format && git add -A src"
},
"keywords": [],
"author": "Kevin Elliott (https://github.com/boxelio/boxel-cli)",
"license": "",
"bin": {
"boxel": "./bin/index.js"
"boxel": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boxelio/boxel-cli.git"
},
"keywords": [
"boxel",
"cli",
"boxos",
"embedded",
"rpi"
],
"author": "Kevin Elliott <[email protected]>",
"license": "",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hapi/hapi": "^18.3.2",
"@types/node": "^12.12.11",
"axios": "^0.19.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.0.0",
"figlet": "^1.2.4",
"fs": "^0.0.1-security",
"mkdirp": "^0.5.1",
"open": "^6.3.0",
"project-name-generator": "^2.1.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
}
}
104 changes: 0 additions & 104 deletions src/authClient.js

This file was deleted.

Loading

0 comments on commit 4b93e36

Please sign in to comment.