prepare for release

master
Peter Babič 3 years ago
parent 2ff2b2f693
commit d07cb09f43
Signed by: peter.babic
GPG Key ID: 4BB075BC1884BA40
  1. 5
      .gitignore
  2. 2
      README.md
  3. BIN
      assets/preview-1.png
  4. BIN
      assets/preview-2.png
  5. BIN
      assets/preview-3.png
  6. BIN
      assets/preview-4.png
  7. 2
      public/manifest.json
  8. 2
      rollup.config.js
  9. 2
      tailwind.config.js

5
.gitignore vendored

@ -6,4 +6,7 @@
out/
# Local Netlify folder
.netlify
.netlify
cypress/videos
cypress/screenshots

@ -7,6 +7,6 @@
- [x] manage UI buttons
- [x] fix undo missing animation
- [x] fix undo when circle picked
- [ ] add about page
- [x] add about page
- [x] fix victory / gameover modal
- [x] handle U, R and A keypresses

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

@ -1,6 +1,6 @@
{
"name": "Triangles.fun",
"short_name": "triangles",
"short_name": "TrianglesFun",
"lang": "en",
"description": "Eliminate all the circles in the triangle by jumping them over",
"theme_color": "#bf616a",

@ -36,7 +36,7 @@ function serve() {
export default {
input: "src/main.js",
output: {
sourcemap: true,
sourcemap: false,
format: "iife",
name: "app",
file: "public/build/bundle.js",

@ -11,6 +11,8 @@ module.exports = {
safelist: [
/^bg\-(green|cyan|blue|yellow|orange|red|purple)(\-(lighter|darker))?/,
/animate-pulse/,
/left-0/,
/right-0/,
],
},
},

Loading…
Cancel
Save