Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
using node scripts instead of grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jul 22, 2020
1 parent 58765c1 commit 9de02d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 47 deletions.
38 changes: 0 additions & 38 deletions Gruntfile.coffee

This file was deleted.

19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
"description": "Less compile cache",
"main": "./lib/less-cache",
"scripts": {
"prepublish": "grunt clean lint coffee",
"test": "grunt test"
"clean": "shx rm -rf lib",
"test": "jasmine-focused --captureExceptions --coffee spec",
"coffee": "npm run clean && shx cp -r src lib && coffee -c -M -o lib lib && shx rm -rf lib/*.coffee",
"build": "npm run coffee",
"prepare": "npm run build"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,14 +36,12 @@
"walkdir": "0.0.11"
},
"devDependencies": {
"coffeescript": "^1.12.7",
"fstream": "^1.0.10",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-coffee": "^1.0.0",
"grunt-shell": "^1.3.0",
"jasmine-focused": "1.x",
"jasmine-focused": "^1",
"temp": "^0.8.3",
"tmp": "0.0.28"
"tmp": "0.0.28",
"shx": "^0.3.2",
"cross-env": "^7.0.2"
}
}

0 comments on commit 9de02d0

Please sign in to comment.