https://github.com/propensive/ferocity
https://github.com/propensive/ferocity
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/propensive/ferocity
- Owner: propensive
- Archived: true
- Created: 2020-09-28T11:56:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-23T19:24:57.000Z (about 5 years ago)
- Last Synced: 2025-02-20T01:38:45.193Z (11 months ago)
- Language: TypeScript
- Homepage:
- Size: 21.5 MB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ferocity: a Fury extension for Visual Studio Code
## Installation
### Clone the repository and change directory
```sh
git clone git@github.com:propensive/ferocity.git
cd ./ferocity
```
### Install Typescript
The extension needs the TypeScript compiler (`tsc`) to build.
```sh
npm install -g typescript
```
### Install dependencies and package the extension
The extension needs to be packaged with [vsce](https://github.com/microsoft/vscode-vsce).
```sh
npm install -g vsce
```
and then:
```sh
npm install
vsce package -o ./ferocity.vsix
```
It will publish the extension to the current directory.
### Install from VSIX
```
code --install-extension ./ferocity.vsix
```