Added solution to tutorial 4
Showing
- dist/bundle.js 1 addition, 0 deletionsdist/bundle.js
- index.html 2 additions, 6 deletionsindex.html
- package-lock.json 4842 additions, 0 deletionspackage-lock.json
- package.json 12 additions, 2 deletionspackage.json
- src/gameOfLife.ts 1 addition, 1 deletionsrc/gameOfLife.ts
- src/index.ts 8 additions, 0 deletionssrc/index.ts
- src/render.ts 9 additions, 1 deletionsrc/render.ts
- tsconfig.json 12 additions, 56 deletionstsconfig.json
- webpack.config.js 21 additions, 0 deletionswebpack.config.js
dist/bundle.js
0 → 100644
This diff is collapsed.
This diff is collapsed.
... | ... | @@ -4,6 +4,7 @@ |
"description": "For the second tutorial, we're going to work with SVG, and CSS via SASS.", | ||
"main": "gameOfLife.js", | ||
"scripts": { | ||
"build": "webpack", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
... | ... | @@ -14,7 +15,16 @@ |
"license": "ISC", | ||
"devDependencies": { | ||
"@types/d3": "^5.0.0", | ||
"typescript": "^2.9.2" | ||
"css-loader": "^1.0.0", | ||
"ts-loader": "^4.4.2", | ||
"typescript": "^2.9.2", | ||
"vue": "^2.5.16", | ||
"vue-loader": "^15.2.6", | ||
"vue-template-compiler": "^2.5.16", | ||
"webpack": "^4.16.3" | ||
}, | ||
"dependencies": {} | ||
"dependencies": { | ||
"d3": "^5.5.0", | ||
"webpack-cli": "^3.1.0" | ||
} | ||
} |
src/index.ts
0 → 100644
This diff is collapsed.
webpack.config.js
0 → 100644
Please register or sign in to comment