Skip to content

Commit 8cd3ce3

Browse files
committed
Rebooted project using vue-cli webpack
1 parent 288382e commit 8cd3ce3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+981
-719
lines changed

.babelrc

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
2-
"presets": [
3-
[
4-
"env"
5-
]
6-
]
7-
}
2+
"presets": ["es2015", "stage-2"],
3+
"plugins": ["transform-runtime"],
4+
"comments": false,
5+
"env": {
6+
"test": {
7+
"plugins": [ "istanbul" ]
8+
}
9+
}
10+
}

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/*.js
2+
config/*.js

.eslintrc.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
root: true,
3+
parser: 'babel-eslint',
4+
parserOptions: {
5+
sourceType: 'module'
6+
},
7+
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
8+
extends: 'standard',
9+
// required to lint *.vue files
10+
plugins: [
11+
'html'
12+
],
13+
// add your custom rules here
14+
'rules': {
15+
// allow paren-less arrow functions
16+
'arrow-parens': 0,
17+
// allow async-await
18+
'generator-star-spacing': 0,
19+
// allow debugger during development
20+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
21+
}
22+
}

.gitignore

+7-51
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,7 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
6-
*.orig
7-
# Runtime data
8-
pids
9-
*.pid
10-
*.seed
11-
*.pid.lock
12-
13-
# Directory for instrumented libs generated by jscoverage/JSCover
14-
lib-cov
15-
16-
# Coverage directory used by tools like istanbul
17-
coverage
18-
19-
# nyc test coverage
20-
.nyc_output
21-
22-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
23-
.grunt
24-
25-
# node-waf configuration
26-
.lock-wscript
27-
28-
# Compiled binary addons (http://nodejs.org/api/addons.html)
29-
build/Release
30-
31-
# Dependency directories
32-
node_modules
33-
jspm_packages
34-
35-
# Optional npm cache directory
36-
.npm
37-
38-
# Optional eslint cache
39-
.eslintcache
40-
41-
# Optional REPL history
42-
.node_repl_history
43-
44-
# Output of 'npm pack'
45-
*.tgz
46-
47-
# Yarn Integrity file
48-
.yarn-integrity
49-
50-
.idea
51-
1+
.DS_Store
2+
node_modules/
3+
dist/
4+
npm-debug.log
5+
test/unit/coverage
6+
test/e2e/reports
7+
selenium-debug.log

README.md

+18-46
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,27 @@
1-
# README #
1+
# write.io
22

3-
[![Build Status](https://travis-ci.org/write-io/write.io.svg?branch=master)](https://travis-ci.org/write-io/write.io)
3+
> A realtime collaborative writing game Edit
44
5-
**write.io** (codename) is a collaborative writing game. You connect to the server (via browser, no install needed). The server then quickly matches you with a few fellow players to form a new writing group. All members of the writing group are online now, and start collaborating on writing a new story. The game works in rounds: in each round, players suggest different continuations to the current, ongoing story.
5+
## Build Setup
66

7-
Every player sees in real time what every other player is writing, and can vote on his preferred continuation to the current plot. Once a particular continuation gets enough votes, it gets added to the ongoing story, and the round finishes (round often take around one minute). When a player suggests “The End” of the story, and his suggestions gets enough votes, the game and the story end.
7+
``` bash
8+
# install dependencies
9+
npm install
810

9-
The end result is a collaboratively created story.
11+
# serve with hot reload at localhost:8080
12+
npm run dev
1013

11-
* [Follow Our Blog](https://medium.com/write-io) for updates
12-
* [Current Tasks](https://github.com/ripper234/write.io/projects/1)
13-
* [Slack](https://www.hamsterpad.com/chat/writeio)
14-
* [A sample story created with write.io](https://www.facebook.com/ripper234/posts/10153753024424159)
15-
* [Give us a :star:](https://github.com/write-io/write.io)
14+
# build for production with minification
15+
npm run build
1616

17-
### Dependencies / Tech Stack ###
17+
# run unit tests
18+
npm run unit
1819

19-
* git
20-
* Node
21-
* Express
22-
* Vue
23-
* Socket.io
20+
# run e2e tests
21+
npm run e2e
2422

25-
### How do I get set up? ###
23+
# run all tests
24+
npm test
25+
```
2626

27-
* git pull
28-
* npm install
29-
* npm start
30-
* [http://localhost:3000/](http://localhost:3000/)
31-
* (See also admin screen at [http://localhost:3000/admin](http://localhost:3000/admin))
32-
33-
### Contribution guidelines ###
34-
35-
* We're having weekly coding sessions in Tel Aviv, usually on Thursday evening or Friday noonish. You're welcome to join!
36-
* Start by looking at some of our [Starter Tasks](https://github.com/write-io/write.io/labels/starter-task)
37-
38-
TBD:
39-
* Writing tests
40-
* Code review
41-
* Other guidelines
42-
43-
### Who do I talk to? ###
44-
45-
For any questions, contact Ron Gross ([email protected], +972-52-6558841)
46-
47-
# Potential P.R venues / Storythons
48-
49-
* http://tisch.nyu.edu/itp
50-
51-
# OKRs for March 31 2017
52-
* Launch Alpha
53-
** Deployed server that anyone can play on
54-
* Produce 3 decent stories
55-
** Each story gets 50 page views
27+
For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

app.js

-97
This file was deleted.

build/build.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// https://github.com/shelljs/shelljs
2+
require('./check-versions')()
3+
require('shelljs/global')
4+
env.NODE_ENV = 'production'
5+
6+
var path = require('path')
7+
var config = require('../config')
8+
var ora = require('ora')
9+
var webpack = require('webpack')
10+
var webpackConfig = require('./webpack.prod.conf')
11+
12+
console.log(
13+
' Tip:\n' +
14+
' Built files are meant to be served over an HTTP server.\n' +
15+
' Opening index.html over file:// won\'t work.\n'
16+
)
17+
18+
var spinner = ora('building for production...')
19+
spinner.start()
20+
21+
var assetsPath = path.join(config.build.assetsRoot, config.build.assetsSubDirectory)
22+
rm('-rf', assetsPath)
23+
mkdir('-p', assetsPath)
24+
cp('-R', 'static/*', assetsPath)
25+
26+
webpack(webpackConfig, function (err, stats) {
27+
spinner.stop()
28+
if (err) throw err
29+
process.stdout.write(stats.toString({
30+
colors: true,
31+
modules: false,
32+
children: false,
33+
chunks: false,
34+
chunkModules: false
35+
}) + '\n')
36+
})

build/check-versions.js

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
var semver = require('semver')
2+
var chalk = require('chalk')
3+
var packageConfig = require('../package.json')
4+
var exec = function (cmd) {
5+
return require('child_process')
6+
.execSync(cmd).toString().trim()
7+
}
8+
9+
var versionRequirements = [
10+
{
11+
name: 'node',
12+
currentVersion: semver.clean(process.version),
13+
versionRequirement: packageConfig.engines.node
14+
},
15+
{
16+
name: 'npm',
17+
currentVersion: exec('npm --version'),
18+
versionRequirement: packageConfig.engines.npm
19+
}
20+
]
21+
22+
module.exports = function () {
23+
var warnings = []
24+
for (var i = 0; i < versionRequirements.length; i++) {
25+
var mod = versionRequirements[i]
26+
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
27+
warnings.push(mod.name + ': ' +
28+
chalk.red(mod.currentVersion) + ' should be ' +
29+
chalk.green(mod.versionRequirement)
30+
)
31+
}
32+
}
33+
34+
if (warnings.length) {
35+
console.log('')
36+
console.log(chalk.yellow('To use this template, you must update following to modules:'))
37+
console.log()
38+
for (var i = 0; i < warnings.length; i++) {
39+
var warning = warnings[i]
40+
console.log(' ' + warning)
41+
}
42+
console.log()
43+
process.exit(1)
44+
}
45+
}

build/dev-client.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* eslint-disable */
2+
require('eventsource-polyfill')
3+
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
4+
5+
hotClient.subscribe(function (event) {
6+
if (event.action === 'reload') {
7+
window.location.reload()
8+
}
9+
})

0 commit comments

Comments
 (0)