Subject | Hash | Author | Date (UTC) |
---|---|---|---|
pre-commit not linting | a6150b39d873c4796ea7f0eb02f116f7c5068124 | mucbuc | 2020-07-08 03:42:52 |
stagedFiles | 09505713d1e6eb5da489a5081fe904794110b8a0 | mucbuc | 2020-07-08 03:40:49 |
lint | 36aa6510d88da2d7cdde5fb776a33ef6d20f5242 | mucbuc | 2020-07-08 03:28:02 |
copy scripts | 2010244fc51915c8700b370a04aa9ea1af6de30d | mucbuc | 2020-07-07 09:23:09 |
dont add changes from lint | b0a615143517985a99f929b1f313751cc9369bb6 | mucbuc | 2020-07-05 04:43:28 |
pre-commit.js | a4ab48e75e496071f24a910524f8ec788c0f5309 | mucbuc | 2020-07-05 04:28:05 |
install husky | 97104fc9ba4dd4164bf29eaf7505f10d61ace7d7 | mucbuc | 2020-07-05 04:21:51 |
print commands | 054c9efa2ae06a16f05a080b111cb3b1b27f3287 | mucbuc | 2020-07-05 04:17:28 |
use green instead of yellow | ce503ff8ef3dba2761179ccb56e629542b3e27cd | mucbuc | 2020-07-04 20:31:01 |
color output | 3d198cf7d4e657ab8ba8d798174116b8336ef258 | mucbuc | 2020-07-04 20:17:24 |
explict mode | ffc586960df26c70adba18de1ed30616e3057edf | mucbuc | 2020-07-04 18:11:36 |
test this | 27b7953902d0e3d7a6c3ed73c911690a5e814954 | mucbuc | 2020-07-04 18:09:59 |
moreshit | 592c64abc5f14a08c094be44f7d19ae6264e36b8 | mucbuc | 2020-07-04 18:08:56 |
fix merge conflict | ab4ee2b9ebbaa6379bdb83664efae5d45c428e5d | mucbuc | 2020-07-04 18:01:40 |
cleanup | e363a09bd4cf01d773d3725db73f3465c89bb4e7 | mucbuc | 2020-07-04 17:58:30 |
wtf | f0af08ef01ec498b6d8be8c6ce5704aa616338d4 | mucbuc | 2020-07-04 17:56:30 |
tewst | 01ae9b15d3a0af828ba5d43c9c76247a7e94d06c | mucbuc | 2020-07-04 17:53:45 |
anoter test | fc42db84f208b381ccff11305bb8d81aafe6c2e7 | mucbuc | 2020-07-04 17:10:17 |
try it | abd7fa98a8b10d1ab31c727b4e5cda32779acd43 | mucbuc | 2020-07-04 17:06:34 |
test | 9f7ddc555012d5a566580179263acd1803935bee | mucbuc | 2020-07-04 16:20:14 |
File | Lines added | Lines deleted |
---|---|---|
lint.js | 0 | 2 |
pre-commit.js | 1 | 1 |
File lint.js changed (mode: 100755) (index fd5221f..245612d) | |||
... | ... | const { exec } = require("shelljs"), | |
3 | 3 | { print, stagedFiles } = require("./base"), | { print, stagedFiles } = require("./base"), |
4 | 4 | files = stagedFiles(); | files = stagedFiles(); |
5 | 5 | ||
6 | print(__filename); | ||
7 | |||
8 | 6 | const jsFiles = files.filter((file) => file.match(/.*\.js$/)); | const jsFiles = files.filter((file) => file.match(/.*\.js$/)); |
9 | 7 | if (jsFiles.length > 1) { | if (jsFiles.length > 1) { |
10 | 8 | const params = jsFiles.join(" "), | const params = jsFiles.join(" "), |
File pre-commit.js changed (mode: 100755) (index c345066..4682664) | |||
... | ... | const stagedFiles = shellExec(`git diff --staged --name-only`, { | |
16 | 16 | if (hasChanges) { | if (hasChanges) { |
17 | 17 | exec("git stash --keep-index -q"); | exec("git stash --keep-index -q"); |
18 | 18 | } | } |
19 | for (const step of ["lint", "test"]) { | ||
19 | for (const step of ["test"]) { | ||
20 | 20 | if (!tryAndRunScript(step)) { | if (!tryAndRunScript(step)) { |
21 | 21 | break; | break; |
22 | 22 | } | } |