Skip to content

Commit bee4a4a

Browse files
committed
v1.1.0
1 parent 19267e4 commit bee4a4a

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
22

33
## [Unreleased][unreleased]
44

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+
514
## [1.0.0][] - 2023-07-31
615

716
- Stable release version
817
- Repository created
918

1019
[unreleased]: https://github.com/astrohelm/workspace/compare/release...HEAD
20+
[1.1.0]: https://github.com/astrohelm/workspace/releases/tag/v1.1.0
1121
[1.0.0]: https://github.com/astrohelm/workspace/releases/tag/release

Makefile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
mode := dev
22
container := container
33
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
437

538
cert:
639
@echo "Creating certificates"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"license": "MIT",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"type": "commonjs",
55
"name": "astrohelm-workspace",
66
"homepage": "https://astrohelm.ru",

0 commit comments

Comments
 (0)