generated from hadenlabs/zsh-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): change template to project (#1)
- Loading branch information
Showing
33 changed files
with
1,598 additions
and
1,273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# **NOTE**: please check the following document docs/env-vars.md | ||
APP_NAME=zsh-plugin-template | ||
APP_NAME=zsh-deno | ||
SONAR_URL= | ||
SONAR_TOKEN= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.11.7 | ||
3.11.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!-- Space: Projects --> | ||
<!-- Parent: ZshPluginTemplate --> | ||
<!-- Title: Security ZshPluginTemplate --> | ||
<!-- Label: ZshPluginTemplate --> | ||
<!-- Parent: ZshDeno --> | ||
<!-- Title: Security ZshDeno --> | ||
<!-- Label: ZshDeno --> | ||
<!-- Label: Security --> | ||
<!-- Include: docs/disclaimer.md --> | ||
<!-- Include: ac:toc --> | ||
|
@@ -10,6 +10,6 @@ | |
|
||
## Reporting a Security Bug | ||
|
||
If you think you have discovered a security issue in any of the zsh-plugin-template projects, we'd love to hear from you. We will take all security bugs seriously and if confirmed upon investigation we will patch it within a reasonable amount of time and release a public security bulletin discussing the impact and credit the discoverer. | ||
If you think you have discovered a security issue in any of the zsh-deno projects, we'd love to hear from you. We will take all security bugs seriously and if confirmed upon investigation we will patch it within a reasonable amount of time and release a public security bulletin discussing the impact and credit the discoverer. | ||
|
||
There are two ways to report a security bug. The easiest is to email a description of the flaw and any related information (e.g. reproduction steps, version) to [security at zsh-plugin-template dot org](mailto:[email protected]). | ||
There are two ways to report a security bug. The easiest is to email a description of the flaw and any related information (e.g. reproduction steps, version) to [security at zsh-deno dot org](mailto:[email protected]). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env ksh | ||
# -*- coding: utf-8 -*- | ||
|
||
export PLUGIN_TEMPLATE_PACKAGE_NAME=plugin-template | ||
export PLUGIN_TEMPLATE_MESSAGE_BREW="Please install brew or use antibody bundle hadenlabs/zsh-brew branch:develop" | ||
export PLUGIN_TEMPLATE_MESSAGE_PYENV="Please install brew or use antibody bundle hadenlabs/zsh-pyenv branch:develop" | ||
export PLUGIN_TEMPLATE_MESSAGE_NOT_FOUND="this not found installed" | ||
export ZSH_DENO_PACKAGE_NAME=deno | ||
export ZSH_DENO_MESSAGE_BREW="Please install brew or use antibody bundle hadenlabs/zsh-brew" | ||
export ZSH_DENO_MESSAGE_PYENV="Please install brew or use antibody bundle hadenlabs/zsh-pyenv" | ||
export ZSH_DENO_MESSAGE_NOT_FOUND="this not found installed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/usr/bin/env ksh | ||
# -*- coding: utf-8 -*- | ||
|
||
function plugin-template::config::main::factory { | ||
function deno::config::main::factory { | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/config/base.zsh | ||
source "${ZSH_DENO_PATH}"/config/base.zsh | ||
case "${OSTYPE}" in | ||
darwin*) | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/config/osx.zsh | ||
source "${ZSH_DENO_PATH}"/config/osx.zsh | ||
;; | ||
linux*) | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/config/linux.zsh | ||
source "${ZSH_DENO_PATH}"/config/linux.zsh | ||
;; | ||
esac | ||
} | ||
|
||
plugin-template::config::main::factory | ||
deno::config::main::factory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/usr/bin/env ksh | ||
# -*- coding: utf-8 -*- | ||
|
||
function plugin-template::core::main::factory { | ||
function deno::core::main::factory { | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/core/base.zsh | ||
source "${ZSH_DENO_PATH}"/core/base.zsh | ||
case "${OSTYPE}" in | ||
darwin*) | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/core/osx.zsh | ||
source "${ZSH_DENO_PATH}"/core/osx.zsh | ||
;; | ||
linux*) | ||
# shellcheck source=/dev/null | ||
source "${ZSH_PLUGIN_TEMPLATE_PATH}"/core/linux.zsh | ||
source "${ZSH_DENO_PATH}"/core/linux.zsh | ||
;; | ||
esac | ||
} | ||
|
||
plugin-template::core::main::factory | ||
deno::core::main::factory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# Welcome to zsh-plugin-template documentation | ||
# Welcome to zsh-deno documentation |
Oops, something went wrong.