Skip to content

Commit

Permalink
chore: ready for introduction of website using nextra (#148)
Browse files Browse the repository at this point in the history
This pull request includes several important changes to the
configuration files and the project structure. The most significant
changes involve updates to the `.vscode` settings, the addition of a new
workspace, and the creation of a `package.json` for the `website`
directory.

Updates to `.vscode` settings:

*
[`.github/sync-client.yml`](diffhunk://#diff-93bc202766315b6269beef308a6ad30ed3e86938ddbfa31b49e030f2263695f1L42-R42):
Changed the destination of the `.vscode/extensions.json` file from
`npm-extensions.json` to `web-extensions.json`.
*
[`.vscode/extensions.json`](diffhunk://#diff-c16655a98a3ee89a7636a59c59a72b0e93649e3a1e947327cfc43a1336b4e912R4):
Added `stylelint.vscode-stylelint` to the list of recommended
extensions.

Project structure changes:

*
[`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L6-R7):
Added `website` to the list of workspaces.
*
[`website/package.json`](diffhunk://#diff-fae242fbf77a8a9d52625664bc36ea12316586f8a716b41137d897a2b7e3df76R1-R8):
Created a new `package.json` file for the `website` directory with basic
configuration, including a `start` script.
  • Loading branch information
lumirlumir authored Dec 21, 2024
1 parent 333b995 commit 8793ce3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/sync-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lumirlumir/lumirlumir-configs:
dest: ./configs/.husky/pre-commit
# ./.vscode
- source: ./.vscode/extensions.json
dest: ./configs/.vscode/npm-extensions.json
dest: ./configs/.vscode/web-extensions.json
- source: ./.vscode/settings.json
dest: ./configs/.vscode/settings.json
# ./
Expand Down
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"stylelint.vscode-stylelint",
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"davidanson.vscode-markdownlint"
Expand Down
10 changes: 9 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"workspaces": [
"examples/*",
"packages/*",
"tests/*"
"tests/*",
"website"
],
"scripts": {
"prepare": "husky",
Expand Down
8 changes: 8 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"private": true,
"name": "website",
"version": "1.2.2",
"scripts": {
"start": "echo start"
}
}

0 comments on commit 8793ce3

Please sign in to comment.