File tree Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] [ unreleased ]
4
4
5
+ ## [ 1.1.0] [ ] - 2023-08-02
6
+
7
+ - Prettier row length 120 -> 100
8
+ - Makefile git commands
9
+ - Grep command
10
+ - Replace command
11
+ - Search between files command
12
+ - Search between rows command
13
+
5
14
## [ 1.0.0] [ ] - 2023-07-31
6
15
7
16
- Stable release version
8
17
- Repository created
9
18
10
19
[ unreleased ] : https://github.com/astrohelm/workspace/compare/release...HEAD
20
+ [ 1.1.0 ] : https://github.com/astrohelm/workspace/releases/tag/v1.1.0
11
21
[ 1.0.0 ] : https://github.com/astrohelm/workspace/releases/tag/release
Original file line number Diff line number Diff line change 1
1
mode := dev
2
2
container := container
3
3
environment = frontend
4
+ message = First commit
5
+ data = data
6
+ repo = workspace
7
+
8
+ search-strings :
9
+ grep -Hrn ' ${search}' ${path}
10
+
11
+ replace :
12
+ grep -rl ' ${replace}' ${path} | xargs sed -i ' s/${replace}/${replacement}/g'
13
+
14
+ search :
15
+ find ${path} -name ' ${search}' -not -path ' */node_modules/*'
16
+
17
+ git-init :
18
+ git init
19
+ git remote add origin git:@github.com:astrohelm/${repo}
20
+ git branch -M main
21
+ git commit -am ${message}
22
+ git push origin main
23
+
24
+ git-commit :
25
+ git commit -am ${message}
26
+
27
+ git-pull :
28
+ git commit -am ${message}
29
+ git pull origin main
30
+
31
+ git-push :
32
+ git commit -am ${message}
33
+ git push origin main
34
+
35
+ git-log :
36
+ git log --graph --oneline --decorate
4
37
5
38
cert :
6
39
@echo " Creating certificates"
Original file line number Diff line number Diff line change 1
1
{
2
2
"license" : " MIT" ,
3
- "version" : " 1.0 .0" ,
3
+ "version" : " 1.1 .0" ,
4
4
"type" : " commonjs" ,
5
5
"name" : " astrohelm-workspace" ,
6
6
"homepage" : " https://astrohelm.ru" ,
You can’t perform that action at this time.
0 commit comments