Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
[web] lerna npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Mar 29, 2019
1 parent 7830310 commit 0ce3a72
Show file tree
Hide file tree
Showing 149 changed files with 21,551 additions and 46,276 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ all: build

build: build/docker

link:
@lerna link

bootstrap:
@lerna bootstrap

Expand All @@ -11,8 +14,12 @@ test:
cli:
@node packages/client/cli.js --help

streamhut:
@node packages/streamhut --help

server:
@(cd packages/server && HOST_URL='http://localhost:3000' PORT=3001 NET_PORT=1337 npm start)
#lerna run start --stream --scope "@streamhut/server"

web:
@(cd packages/web && npm start)
Expand Down
Binary file added designAssets/favicon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added designAssets/favicon_alert.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions designAssets/hut.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions designAssets/hut_blk.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3,251 changes: 3,251 additions & 0 deletions designAssets/streamhut.ai

Large diffs are not rendered by default.

Binary file added designAssets/streamhut_blu_blk.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions designAssets/streamhut_blu_blk.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 13 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"packages": [
"packages/*"
],
"version": "0.0.1"
"version": "0.0.0",
"npmClient": "npm",
"command": {
"publish": {
"ignoreChanges": ["ignored-file", "*.md"],
"message": "chore(release): publish"
},
"bootstrap": {
"ignore": "component-*",
"npmClientArgs": ["--no-package-lock"]
}
},
"packages": ["packages/*"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamhut",
"version": "0.2.5",
"version": "0.0.0",
"description": "Stream and send data, terminal to web and vice versa.",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/client/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const {
arrayBufferMimeDecouple
} = require('arraybuffer-mime')

const { start } = require('../server/server')
const { start } = require('@streamhut/server')
const packageJson = require('./package.json')

const hut = fs.readFileSync(path.resolve(__dirname, 'hut.txt'), 'utf8')
Expand Down

0 comments on commit 0ce3a72

Please sign in to comment.