Skip to content

Commit

Permalink
refactor: react pro theme rebranded
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfalconmx committed Dec 26, 2024
1 parent a316ba0 commit c95f2c0
Show file tree
Hide file tree
Showing 15 changed files with 70 additions and 7,488 deletions.
Binary file modified .github/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update

on:
workflow_dispatch:
schedule: [{ cron: "0 0 * * 0" }]
schedule: [{ cron: '0 0 * * 0' }]

jobs:
update:
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.husky/
node_modules/
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 luisfalconmx
Copyright (c) 2025 [luisfalconmx.dev](https://www.luisfalconmx.dev/)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
193 changes: 0 additions & 193 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,195 +1,2 @@
<!-- START .github/README_TEMPLATE/vscode-theme.template.md -->
<h1 align="center">falcon-theme</h1>

<p align="center">
<b>Dark Theme for Visual Studio Code designed specifically to work with React.js. This theme offers dark contrasts with colorful tones.</b><br />
<sub>Created with ❤️ by luisfalconmx</sub>
</p>

<br />

<p align="center">
<img src="https://raw.githubusercontent.com/luisfalconmx/falcon-theme/main/.github/screenshot.png" alt="Falcon Theme" width="100%" />
</p>

<br />

## Installation

Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.

```sh
ext install luisfalconmx.falcon-theme
```

## Contributing

#### First clone the repository from github

```bash
# HTTPS
https://github.com/luisfalconmx/falcon-theme.git
```

```bash
# SSH
[email protected]:luisfalconmx/falcon-theme.git
```

```bash
# GITHUB CLI
gh repo clone luisfalconmx/falcon-theme
```

#### Or fork this project clicking in the fork button set in head of this page.

![image](https://user-images.githubusercontent.com/57654255/173723706-7091d0dd-6e3d-4551-b834-5cef3a2531bf.png)

If you need help for this step check the next guide:
[https://docs.github.com/en/get-started/quickstart/fork-a-repo](https://docs.github.com/en/get-started/quickstart/fork-a-repo)

#### Set node version with [nvm](https://github.com/nvm-sh/nvm#node-version-manager---) and install dependencies

```
nvm use
npm install
```

#### Finally you can start a local dev server with this command

```
npm start
```

#### If you need to check the code to find some errors and warnings, use the next commands

```
npm run lint
npm run stylelint
```

#### Also exists a command for apply code writing rules like indents, semicolons, etc. You can use the following command

```
npm run pretty
```

## Pull Requests

#### To contribute to the project you need to create a new branch from the main branch

```git
git checkout -b my-new-branch
```

#### Once you complete your project changes can be committed following the standard established by [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).

```
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
```

### Examples

#### Commit message with no body

```
docs: correct spelling of CHANGELOG
```

#### Commit message with scope

```
feat(lang): add Polish language
```

#### Commit message with description and breaking change footer

```
feat: allow provided config object to extend other configs
BREAKING CHANGE: `extends` key in config file is now used for extending other config files
```

If the code passes the tests and the commit message follows the standards set by [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), you can commit your changes and upload them to the remote repository and you're ready to **create a Pull Request** to the **main branch**.

If you need help to make a pull request, you can consult the following link:

[https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)

### Linters, Code Formater and other tools

All changes to the project will be validated by creating a commit. These are the tools used to ensure that all code follows the quality standards defined for all contributions:

- [ESLint](https://github.com/eslint/eslint)
- [Prettier](https://github.com/prettier/prettier)
- [Stylelint](https://github.com/stylelint/stylelint)
- [Husky](https://github.com/typicode/husky)
- [Commitlint](https://github.com/conventional-changelog/commitlint)
- [Lint Staged](https://github.com/okonet/lint-staged)

### Join us in discussions

We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like to help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in the [discussions](https://github.com/luisfalconmx/falcon-theme/discussions).

## Roadmap

Our project roadmap is where you can learn about what features we're working on, what stage they're in, and when we expect to bring them to you. Have any questions or comments about items on the roadmap? Share your feedback in [discussions](https://github.com/luisfalconmx/falcon-theme/discussions) section.

Review the project roadmap. Maybe there is something amazing that you can contribute 😉

[https://github.com/luisfalconmx/falcon-theme/projects?type=beta](https://github.com/luisfalconmx/falcon-theme/projects?type=beta)

## Releases

To create a release it is necessary to prepare the project following these steps

#### Create a new version with tag

```
npm version <version>
```

The above command receives as a parameter a specific version such as 1.4.0 or a version type defined by npm's [semantic versioning](https://docs.npmjs.com/about-semantic-versioning) which will automatically increment the number.

These are the available types that can be used as a parameter:

- **Patch** releases: `1.0` or `1.0.x` or `~1.0.4`
- **Minor** releases: `1` or `1.x` or `^1.0.4`
- **Major** releases: `*` or `x`

### Examples

```
npm version 1.4.0
```

```
npm version minor
```

#### Upload the tag to the remote repository

```
git push origin <tag>
```

Check the complete list of all official releases published:
[https://github.com/luisfalconmx/falcon-theme/releases](https://github.com/luisfalconmx/falcon-theme/releases)

## License

This project is free and open-source software licensed under the [MIT License](https://github.com/luisfalconmx/falcon-theme/blob/main/LICENSE).

Some contents like images, videos, documents and other multimedia files use your own licence and in case required atributtion this is mentioned in any part of this project like in the code or in the documentation.

## Thanks ❤️

Thank you very much for visiting this repository, contributing amazing code and being part of this great community on github.

If you want to support me you can visit my [Github Sponsors Profile](https://github.com/sponsors/luisfalconmx). Any support, no matter how small, motivates me to continue creating open source projects and share them with everyone :)

<!-- END .github/README_TEMPLATE/vscode-theme.template.md -->
Binary file removed images/luisfalconmx.png
Binary file not shown.
Binary file added images/vscode-theme-react-pro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 33 additions & 3 deletions package-lock.json

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

63 changes: 24 additions & 39 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
{
"name": "falcon-theme",
"description": "Dark Theme for Visual Studio Code designed specifically to work with React.js. This theme offers dark contrasts with colorful tones.",
"displayName": "Falcon Theme",
"name": "vscode-theme-react-pro",
"description": "React Pro Theme for Visual Studio Code",
"displayName": "React Pro Theme",
"publisher": "luisfalconmx",
"license": "MIT",
"author": "luisfalconmx",
"version": "2.0.0",
"version": "0.1.0",
"engines": {
"vscode": "^1.50.0"
},
"homepage": "https://github.com/luisfalconmx/falcon-theme",
"scripts": {
"format": "prettier --write . --ignore-unknown"
},
"homepage": "https://github.com/luisfalconmx/vscode-theme-react-pro",
"repository": {
"type": "git",
"url": "https://github.com/luisfalconmx/falcon-theme.git"
"url": "https://github.com/luisfalconmx/vscode-theme-react-pro.git"
},
"bugs": {
"url": "https://github.com/luisfalconmx/falcon-theme/issues"
"url": "https://github.com/luisfalconmx/vscode-theme-react-pro/issues"
},
"galleryBanner": {
"color": "#070C13",
"color": "#01020E",
"theme": "dark"
},
"icon": "images/luisfalconmx.png",
"icon": "images/vscode-theme-react-pro.png",
"categories": [
"Themes"
],
"keywords": [
"falcon dark theme",
"falcon dark",
"falcon-theme",
"falcon theme",
"falcon",
"theme falcon",
"react pro dark theme",
"react pro dark",
"react-pro-theme",
"react pro theme",
"react pro",
"theme react pro",
"blue",
"dark",
"theme",
"vscode",
"luisfalconmx",
"luis",
"luisfalconmx/falcon-theme",
"luisfalconmx/react-pro-theme",
"react",
"react theme",
"dark theme",
Expand All @@ -61,30 +63,13 @@
"contributes": {
"themes": [
{
"label": "Falcon - React Theme",
"uiTheme": "vs-dark",
"path": "./theme/react-theme.json"
},
{
"label": "Falcon - Vue Theme",
"uiTheme": "vs-dark",
"path": "./theme/vue-theme.json"
},
{
"label": "Falcon - Angular Theme",
"label": "React Pro Theme",
"uiTheme": "vs-dark",
"path": "./theme/angular-theme.json"
},
{
"label": "Falcon - Astro Theme",
"uiTheme": "vs-dark",
"path": "./theme/astro-theme.json"
},
{
"label": "Falcon - JavaScript Theme",
"uiTheme": "vs-dark",
"path": "./theme/javascript-theme.json"
"path": "./theme/react-pro-theme.json"
}
]
},
"devDependencies": {
"prettier": "^3.4.2"
}
}
Loading

0 comments on commit c95f2c0

Please sign in to comment.