Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beerose/css-to-js-vscode
https://github.com/beerose/css-to-js-vscode
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/beerose/css-to-js-vscode
- Owner: beerose
- Created: 2020-05-02T17:14:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T20:20:00.000Z (about 2 years ago)
- Last Synced: 2024-12-22T07:56:10.007Z (20 days ago)
- Language: TypeScript
- Size: 442 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# css-to-js-vscode
## Features
## Release Notes
### 1.0.0
## Get up and running straight away
- Press `F5` to open a new window with your extension loaded.
- Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`.
- Set breakpoints in your code inside `src/extension.ts` to debug your extension.
- Find output from your extension in the debug console.## Make changes
- You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`.
- You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.## Explore the API
- You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`.
## Run tests
- Open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Extension Tests`.
- Press `F5` to run the tests in a new window with your extension loaded.
- See the output of the test result in the debug console.
- Make changes to `src/test/suite/extension.test.ts` or create new test files inside the `test/suite` folder.
- The provided test runner will only consider files matching the name pattern `**.test.ts`.