File tree 5 files changed +20
-36
lines changed
5 files changed +20
-36
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ A simple notaking wrapper for plain text notes!
9
9
10
10
Install
11
11
```
12
- mage install
12
+ task install
13
13
```
14
14
15
15
Build
16
16
```
17
- mage build
17
+ task build
18
18
```
19
19
20
20
Developer Build (Creates separate config under ~ /.config/notr-dev)
21
21
```
22
- mage dev
22
+ task dev
23
23
```
Original file line number Diff line number Diff line change 1
1
module github.com/officialkris/notr
2
2
3
3
go 1.21.1
4
-
5
- require github.com/magefile/mage v1.15.0
Original file line number Diff line number Diff line change 1
- github.com/magefile/mage v1.15.0 h1:BvGheCMAsG3bWUDbZ8AyXXpCNwU9u5CB6sM+HNb9HYg =
2
- github.com/magefile/mage v1.15.0 /go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A =
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ version : ' 3'
2
+
3
+ tasks :
4
+ dev :
5
+ cmds :
6
+ - go build -trimpath -ldflags="-s -w" -tags dev
7
+ - ./notr
8
+ # silent: true
9
+ build :
10
+ cmds :
11
+ - go mod download
12
+ - go build -trimpath -ldflags="-s -w"
13
+ install :
14
+ cmds :
15
+ - go install -ldflags="-s -w" ./... -tags prod
16
+ clean : rem notr
17
+ # TODO: Make sure REM directory is clean and future set to OS trash
You can’t perform that action at this time.
0 commit comments