Transitioned to using SASS and CoffeeScript for assets; using Grunt.js for compiling
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-06-12 22:19:46 -04:00
parent d899ffe58a
commit e3a334546f
10 changed files with 2013 additions and 80 deletions

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "game-data",
"description": "PC hardware benchmarking data logger",
"version": "0.1.0",
"main": "src/server.rb",
"scripts": {
"grunt": "grunt"
},
"repository": {
"type": "git",
"url": "https://git.metaunix.net/BitGoblin/game-data"
},
"keywords": [
"pc",
"hardware",
"benchmarking"
],
"author": "Gregory Ballantine <gballantine@bitgoblin.tech>",
"license": "BSD-2-Clause",
"devDependencies": {
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"sass": "^1.77.4"
}
}