Skip to content

Commit

Permalink
Merge branch 'main' into feature/search-filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron committed Jul 2, 2024
2 parents c0e589e + 2b0e8ea commit 68aeef9
Show file tree
Hide file tree
Showing 419 changed files with 29,793 additions and 4,807 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prepare/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Allow modern Yarn
run: corepack enable
shell: bash
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,14 @@ jobs:
publish:
strategy:
matrix:
package: [core, cli, plugin-tutorial]
package: [core, cli]
include:
- package: core
path: 'package.json'
workspace: '@iota-wiki/core'
- package: cli
path: 'cli/package.json'
workspace: '@iota-wiki/cli'
- package: plugin-tutorial
path: 'plugins/tutorial/package.json'
workspace: '@iota-wiki/plugin-tutorial'
uses: ./.github/workflows/publish.reusable.yaml
with:
path: ${{ matrix.path }}
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,14 @@ jobs:
tag:
strategy:
matrix:
package: [core, cli, plugin-tutorial]
package: [core, cli]
include:
- package: core
path: 'package.json'
workspace: '@iota-wiki/core'
- package: cli
path: 'cli/package.json'
workspace: '@iota-wiki/cli'
- package: plugin-tutorial
path: 'plugins/tutorial/package.json'
workspace: '@iota-wiki/plugin-tutorial'
uses: ./.github/workflows/tag.reusable.yaml
with:
path: ${{ matrix.path }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To preview the Wiki locally, use the following steps. For more detailed scripts,

| Script | Explanation |
|---------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `prepare` | Prepare the environment by checking out submodules and building local packages needed for the Wiki build. |
| `prepare` | Prepare the environment by checking out submodules build. |
| `start` | Start a development server serving the Wiki, with hot reloading on changes. |
| `start:section:{section}` | Start a development server serving only a section of the Wiki, with hot reloading on changes. Available sections are `build`, `get-started`, `learn`, and `maintain`. |
| `build` | Build the Wiki. To build for production, checkout the latest version of external documentation by running `yarn checkout:remote` and set the `MODE` environment variable to `production`. |
Expand Down
8 changes: 0 additions & 8 deletions cli/src/commands/default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ const DefaultComponent: FC<DefaultComponentProps> = (props) => {
label: 'Check the current directory for broken links.',
value: 'check',
},
{
label:
'Configure the tutorial settings to properly list it on the IOTA Wiki.',
value: 'configure',
},
];

const onSelect = (item) => {
Expand All @@ -38,9 +33,6 @@ const DefaultComponent: FC<DefaultComponentProps> = (props) => {
if (item.value === 'check') {
props.command.cli.run(['check']);
}
if (item.value === 'configure') {
props.command.cli.run(['tutorial', 'configure']);
}
};

return (
Expand Down
Loading

0 comments on commit 68aeef9

Please sign in to comment.