Skip to content

Commit c87a22f

Browse files
committed
Change ownership to Enrise
1 parent 263c716 commit c87a22f

File tree

12 files changed

+21
-23
lines changed

12 files changed

+21
-23
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contributing
22

3-
Feel free to submit a PR of any kind! New task sections are always appriciated.
3+
Feel free to submit a PR of any kind! New task sections are always appreciated.

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ Check out the following sections for tasks that could be helpfull for your proje
3636
# Credits
3737

3838
This Taskfile setup is based on
39-
[Adrian Cooney's Taskfile setup](https://github.com/adriancooney/Taskfile) and
40-
[Enrise](https://enrise.com) their internal implementation of the Taskfile.
39+
[Adrian Cooney's Taskfile](https://github.com/adriancooney/Taskfile).
4140

4241
# Contribute
4342

Taskfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33

44
# =========================================================
55
# Taskfile gives you a set of quick tasks for your project
6-
# More info: https://go.futureportal.com/taskfile
6+
# More info: https://enri.se/taskfile
77
# =========================================================
88

99
PATH=./node_modules/.bin:$PATH
@@ -98,7 +98,7 @@ function task:shorthand { ## Create CLI shorthand task instead of ./Taskfile
9898
echo "/usr/local/bin/task already exists."
9999
else
100100
echo -e "You are about to create /usr/local/bin/task that requires root permission..."
101-
sudo curl --location --silent --output /usr/local/bin/task https://go.futureportal.com/task-bin
101+
sudo curl --location --silent --output /usr/local/bin/task https://enri.se/taskfile-bin
102102
sudo chmod +x /usr/local/bin/task
103103
fi
104104
echo -e "${BLUE}You can now use:${RESET} task ${YELLOW}<task>${RESET} <args>"

bin/task

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33

44
# =========================================================
55
# Taskfile gives you a set of quick tasks for your project
6-
# More info: https://go.futureportal.com/taskfile
6+
# More info: https://enri.se/taskfile
77
# =========================================================
88

99
CURRENT_DIR=$(pwd)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@futureportal/taskfile",
2+
"name": "@enrise/taskfile",
33
"version": "1.0.0",
44
"description": "A ./Taskfile is a task runner in plain and easy Bash. It adds a list of available tasks to your project.",
55
"scripts": {
@@ -8,7 +8,7 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/FuturePortal/Taskfile.git"
11+
"url": "git+https://github.com/Enrise/Taskfile.git"
1212
},
1313
"keywords": [
1414
"bash",
@@ -25,14 +25,14 @@
2525
},
2626
{
2727
"name": "Contributors",
28-
"url": "https://github.com/FuturePortal/Taskfile/graphs/contributors"
28+
"url": "https://github.com/Enrise/Taskfile/graphs/contributors"
2929
}
3030
],
3131
"license": "MIT",
3232
"bugs": {
33-
"url": "https://github.com/FuturePortal/Taskfile/issues"
33+
"url": "https://github.com/Enrise/Taskfile/issues"
3434
},
35-
"homepage": "https://github.com/FuturePortal/Taskfile#readme",
35+
"homepage": "https://github.com/Enrise/Taskfile#readme",
3636
"devDependencies": {
3737
"husky": "^8.0.1",
3838
"prettier": "^2.7.1"

section/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
An absolute must if your project is running via docker locally.
44

5-
```bash
5+
```shell
66
# ===========================
77
## Docker
88
# ===========================

section/github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
If you use GitHub and want an easy way to check out Pull Requests locally, `task:pr` is a great
44
addition to your project section in the Taskfile.
55

6-
```bash
6+
```shell
77
# ===========================
88
## Project
99
# ===========================

section/gitlab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
If you use GitLab and want an easy way to check out Merge Requests locally, `task:mr` is a great
44
addition to your project section in the Taskfile.
55

6-
```bash
6+
```shell
77
# ===========================
88
## Project
99
# ===========================

0 commit comments

Comments
 (0)