Skip to content

Commit cc6867e

Browse files
Merge pull request cerebral#44 from reflog/next
refactor(demo): created JS version of TodoMVC + rename of TS one
2 parents 5a4c527 + 9d40fec commit cc6867e

Some content is hidden

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

67 files changed

+839
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Logs
2+
.idea
23
logs
34
*.log
45
npm-debug.log*

package-lock.json

Lines changed: 85 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"tslib": "1.9.3",
4444
"vue": "2.5.16",
4545
"vue-hot-reload-api": "2.3.0",
46+
"vue-styled-components": "1.3.0",
4647
"ws": "5.2.1"
4748
},
4849
"devDependencies": {
@@ -54,6 +55,7 @@
5455
"@types/react-dom": "16.0.6",
5556
"@vue/component-compiler-utils": "2.1.0",
5657
"babel-loader": "8.0.0-beta.4",
58+
"babel-plugin-transform-vue-jsx": "3.7.0",
5759
"commitizen": "^2.10.1",
5860
"concurrently": "3.6.1",
5961
"cz-customizable": "^5.2.0",

packages/demos/posts/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"description": "",
66
"main": "index.js",
77
"scripts": {
8+
"test": "echo \"Error: no test specified\"",
89
"start": "./../../../node_modules/.bin/parcel src/index.html --port 4000"
910
},
1011
"keywords": [],
File renamed without changes.
File renamed without changes.

packages/demos/todomvc/package.json renamed to packages/demos/react-todomvc-typescript/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "todomvc",
2+
"name": "react-todomvc-typescript",
33
"private": true,
44
"version": "1.0.0",
55
"description": "Overmind todomvc demo",
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"start": "webpack-dev-server --port 4000 --hot",
1111
"build": "webpack",
12+
"test": "echo \"Error: no test specified\"",
1213
"typecheck": "tsc --noEmit",
1314
"prepare": "npm run build",
1415
"posttest": "npm run typecheck"
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)