chore: update deps and readme
This commit is contained in:
parent
b5f3767f10
commit
b2060fba41
3 changed files with 15223 additions and 3 deletions
|
@ -1,9 +1,11 @@
|
|||
# Play Minesweeper Online
|
||||
[](https://app.netlify.com/sites/mnswpr/deploys)
|
||||
|
||||
This is a single page web application featuring the classic game, Minesweeper.
|
||||
This is the classic game **Minesweeper** built as a single page application with vanilla JS (i.e., no framework dependency).
|
||||
|
||||
Built on HTML, JS, and CSS.
|
||||
Stack:
|
||||
- HTML, JS, and CSS
|
||||
- Webpack for bundling
|
||||
|
||||
## Development
|
||||
To start development, you need node v16 (the dev server doesn't work on v18 *yet*). Once you know you have this, you can do the following:
|
||||
|
@ -14,4 +16,4 @@ To start development, you need node v16 (the dev server doesn't work on v18 *yet
|
|||
After running the commands to start development, open in a browser: `http://localhost:4200`
|
||||
|
||||
## Live Demo
|
||||
The current live site is here: (https://mnswpr.com)
|
||||
The live site is here: [Minesweeper](https://mnswpr.com)
|
||||
|
|
15217
package-lock.json
generated
Normal file
15217
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -6,6 +6,7 @@
|
|||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "concurrently --kill-others \"npm run watch:dev\" \"npm start\"",
|
||||
"start:dev": "concurrently --kill-others \"npm run watch:dev\" \"npm start\"",
|
||||
"start": "http-server ./dist/ -a localhost -p 4200",
|
||||
"watch:dev": "node ./node_modules/webpack/bin/webpack.js --watch --mode development .",
|
||||
|
|
Loading…
Reference in a new issue