Skip to content

Commit

Permalink
Add dependencies required to install/build as non-dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thesephist committed Jan 2, 2019
1 parent 9fded56 commit 4d3bbb7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Torus has no production dependencies, requires no build step to take advantage o

### Fast and responsive by default

Torus isn't designed to be the fastest virtual DOM library (there are great alternatives like `inferno`), but performance and responsiveness are among the primary goals of the project. While remaining tiny, Torus tries to be as fast and responsive as possible, _especially_ in rendering. Combined with the tiny bundle size, this makes Torus great for building software for anywhere, on any device.
Torus isn't designed to be the fastest virtual DOM library (there are great alternatives like `inferno`), but performance and responsiveness are among the primary goals of the project. While remaining tiny, Torus tries to be as fast and responsive as possible, _especially_ in rendering. Combined with the small bundle size, this makes Torus great for building web applications for anywhere, on any device.

### Portable across the web platform

Expand Down
3 changes: 1 addition & 2 deletions TODOS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Torus To-dos
# Roadmap

- [-] `/samples/slides/` demo

Expand All @@ -17,7 +17,6 @@
- Bundle size work -- still 4.6kB!

- [ ] Make README polished modeled after Preact's Github README. What badges do they use?
- Update to include the new bundling style / import / usage from NPM.

- [ ] Build a JS based fuzzer tool and use it to fuzz jdom -- might be a separate repo project. -- look at examples existing.

Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"deploy:graph": "surge -p samples/graph-calc/ --domain https://graphcalc.surge.sh",
"deploy:markus": "surge -p samples/markus/ --domain https://markuswriter.surge.sh"
},
"dependencies": {
"mkdirp": "^0.5.1",
"webpack": "^4.27.1"
},
"devDependencies": {
"chai": "^4.2.0",
"istanbul": "^0.4.5",
Expand All @@ -30,8 +34,6 @@
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"marked": "^0.5.2",
"mkdirp": "^0.5.1",
"mocha": "^5.1.1",
"webpack": "^4.27.1"
"mocha": "^5.1.1"
}
}

0 comments on commit 4d3bbb7

Please sign in to comment.