Skip to content

Commit

Permalink
Move to itch.io for easier automated publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Jaynes authored and Chris Jaynes committed Apr 7, 2019
1 parent f6489aa commit 94adf1a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
A touch-sensitive light-board, inspired by an interactive table my
kids saw at a restaurant.

You can try out both implementations:

- [Lightboard - Vue.js](https://geekytime.itch.io/lightboard-vue)
- [Lightboard - React](https://geekytime.itch.io/lightboard-react)

## About

I thought this would be fun to build, and also an interesting comparison
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"packages/*"
],
"scripts": {
"lint": "lerna run lint --stream"
"build": "lerna run build --stream",
"lint": "lerna run lint --stream",
"push": "lerna run push --stream",
"validate": "lerna run validate --stream"
},
"devDependencies": {
"lerna": "^3.13.1"
Expand Down
4 changes: 3 additions & 1 deletion packages/react-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"lint": "eslint . --ext .js,.vue"
"lint": "eslint . --ext .js,.vue",
"push": "butler push ./dist geekytime/lightboard-react:html5",
"validate": "butler validate ./dist"
},
"devDependencies": {
"@lightboard/config": "^1.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/react-demo/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
const baseConfig = require("@lightboard/config/webpack.config.js")
const merge = require("webpack-merge")

baseConfig.plugins[0].options.title = "Lightboard - React"

const config = merge(baseConfig, {
entry: {
app: ["./src/index.js"]
Expand Down
4 changes: 3 additions & 1 deletion packages/vue-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"lint": "eslint . --ext .js,.vue"
"lint": "eslint . --ext .js,.vue",
"push": "butler push ./dist geekytime/lightboard-vue:html5",
"validate": "butler validate ./dist"
},
"devDependencies": {
"@lightboard/config": "^1.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/vue-demo/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ const baseConfig = require("@lightboard/config/webpack.config.js")
const merge = require("webpack-merge")
const VueLoaderPlugin = require("vue-loader/lib/plugin")

baseConfig.plugins[0].options.title = "Lightboard - Vue.js"

const config = merge(baseConfig, {
entry: {
app: ["./src/index.js"]
Expand Down

0 comments on commit 94adf1a

Please sign in to comment.