Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Deploy

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Update this to match your project's Node version
cache: 'yarn'

- name: Clean Yarn Cache
run: yarn cache clean

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Test
run: yarn test

# Optional: Add deployment steps if needed
# - name: Deploy
# run: |
# # Add your deployment commands here
2 changes: 0 additions & 2 deletions docs/cli/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

List all celocli commands.

* [`celocli commands`](#celocli-commands)

## `celocli commands`

List all celocli commands.
Expand Down
13 changes: 1 addition & 12 deletions docs/cli/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,7 @@

List installed plugins.

* [`celocli plugins`](#celocli-plugins)
* [`celocli plugins:add PLUGIN`](#celocli-pluginsadd-plugin)
* [`celocli plugins:inspect PLUGIN...`](#celocli-pluginsinspect-plugin)
* [`celocli plugins:install PLUGIN`](#celocli-pluginsinstall-plugin)
* [`celocli plugins:link PATH`](#celocli-pluginslink-path)
* [`celocli plugins:remove [PLUGIN]`](#celocli-pluginsremove-plugin)
* [`celocli plugins:reset`](#celocli-pluginsreset)
* [`celocli plugins:uninstall [PLUGIN]`](#celocli-pluginsuninstall-plugin)
* [`celocli plugins:unlink [PLUGIN]`](#celocli-pluginsunlink-plugin)
* [`celocli plugins:update`](#celocli-pluginsupdate)

## `celocli plugins`
## `celocli plugins`

List installed plugins.

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"dependencies": {
"@algolia/client-search": "^5.21.0",
"@cookbookdev/docsbot": "^4.24.14",
"@cookbookdev/docsbot": "^4.25.8",
"@crowdin/cli": "^4.6.1",
"@docusaurus/core": "^3.7.0",
"@docusaurus/plugin-ideal-image": "^3.7.0",
Expand Down Expand Up @@ -49,9 +49,9 @@
"prism-react-renderer": "^2.4.1",
"process": "^0.11.10",
"prop-types": "^15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lite-youtube-embed": "^2.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-lite-youtube-embed": "^2.5.1",
"react-loadable": "^5.5.0",
"react-popper": "^2.3.0",
"react-youtube": "^10.1.0",
Expand Down Expand Up @@ -79,7 +79,7 @@
"devDependencies": {
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@types/react": "^18.2.45",
"@types/react": "^19.0.0",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"prettier": "3.5.3",
Expand Down
Loading
Loading