3 Commits

Author SHA1 Message Date
Allyedge
a74657d2b1 v0.1.1 2022-06-02 22:12:33 +02:00
Allyedge
b92bf721c8 chore: update workflows 2022-06-02 15:22:39 +02:00
Allyedge
5864b9f023 docs: update readme 2022-06-02 14:55:24 +02:00
8 changed files with 65 additions and 1104 deletions

4
.github/CODEOWNERS vendored
View File

@@ -1,2 +1,2 @@
* @EvolutionX-10
* @Allyedge
* @Allyedge
* @EvolutionX-10

View File

@@ -1,24 +1,12 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Go"
on:
push:
branches: [ go-rewrite ]
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
branches: [main]
schedule:
- cron: '40 13 * * 2'
- cron: "40 13 * * 2"
jobs:
analyze:
@@ -32,16 +20,16 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

View File

@@ -7,8 +7,8 @@ on:
permissions:
contents: write
# packages: write
# issues: write
packages: write
issues: write
jobs:
goreleaser:

View File

@@ -1 +0,0 @@
.github/

View File

@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## 0.1.1 (2022-06-02)
The `go-npm` package was replaced by one of its forks, `@gzuidhof/go-npm`.
`@gzuidhof/go-npm` has updated dependencies, and it uses `esbuild`, which is great.
### Changes
- Replace `go-npm` with `@gzuidhof/go-npm`.
## 0.1.0 (2022-06-02)
This is the CLI's initial release.

View File

@@ -1,5 +1,8 @@
# Sern CLI
[![Go](https://img.shields.io/badge/go-%2300ADD8.svg?style=for-the-badge&logo=go&logoColor=white)](https://github.com/sern-handler/cli)
[![Build](https://img.shields.io/github/workflow/status/sern-handler/cli/goreleaser?style=for-the-badge)](https://github.com/sern-handler/cli)
Our CLI allows you to setup and manage Discord bot projects without writing a single line of code!
😁 **User Friendly** <br>
@@ -7,6 +10,10 @@ Our CLI allows you to setup and manage Discord bot projects without writing a si
🌱 **Efficient** <br>
💪 **Powerful** <br>
## License
[![GitHub License](https://img.shields.io/github/license/sern-handler/cli?style=for-the-badge)](https://github.com/sern-handler/cli)
## Installation
```sh
@@ -29,7 +36,21 @@ When you install the CLI, you can use our commands with **sern** prefix.
## Setting Up Your Project
#### TODO
To create a new project, you can simply run the following command:
```sh
sern init
```
The `init` command will ask you some questions and at the end it will generate a new project.
## Help
If you need help, you can always run the following command:
```sh
sern help
```
## Stats

1077
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@sern/cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "Our CLI allows you to setup and manage Discord bot projects without writing a single line of code!",
"scripts": {
"postinstall": "go-npm install",
@@ -10,6 +10,9 @@
"type": "git",
"url": "git+https://github.com/sern-handler/cli.git"
},
"dependencies": {
"@gzuidhof/go-npm": "^0.1.13"
},
"keywords": [
"sern",
"cli",
@@ -18,17 +21,14 @@
"discord.js"
],
"contributors": [
"EvolutionX-10",
"Allyedge"
"Allyedge",
"EvolutionX-10"
],
"license": "ISC",
"license": "MIT",
"bugs": {
"url": "https://github.com/sern-handler/cli/issues"
},
"homepage": "https://github.com/sern-handler/cli#readme",
"dependencies": {
"go-npm": "^0.1.9"
},
"goBinary": {
"name": "sern",
"path": "./bin",