Skip to content

Commit faa3624

Browse files
committed
Created
0 parents  commit faa3624

File tree

10 files changed

+793
-0
lines changed

10 files changed

+793
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Publish Extension
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
17+
- run: npm ci
18+
19+
- name: Publish to Visual Studio Marketplace
20+
uses: HaaLeo/publish-vscode-extension@v2
21+
with:
22+
pat: ${{ secrets.VSM_PAT }}
23+
registryUrl: https://marketplace.visualstudio.com
24+
25+
- name: Publish to Open VSX Registry
26+
uses: HaaLeo/publish-vscode-extension@v2
27+
with:
28+
pat: ${{ secrets.OVSX_PAT }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "scheiblingco-default" extension pack will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# scheiblingco-default README
2+
3+
## Working with Markdown
4+
5+
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
6+
7+
* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux).
8+
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux).
9+
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets.
10+
11+
## For more information
12+
13+
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
14+
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
15+
16+
**Enjoy!**

package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "scheiblingco-default",
3+
"displayName": "Scheiblingco Default",
4+
"description": "Just a default extension pack",
5+
"version": "0.0.1",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/scheiblingco/code-scheiblingco-default.git"
9+
},
10+
"engines": {
11+
"vscode": "^1.100.0"
12+
},
13+
"publisher": "scheiblingco",
14+
"categories": [
15+
"Extension Packs"
16+
],
17+
"author": {
18+
"name": "Scheibling Consulting",
19+
"email": "it@scheibling.se"
20+
},
21+
"extensionPack": [
22+
"github.copilot",
23+
"GitHub.copilot-chat",
24+
"scheiblingco.code-cmd-repeat",
25+
"redhat.vscode-yaml",
26+
"ms-vscode.vscode-typescript-next",
27+
"ms-vscode-remote.vscode-remote-extensionpack",
28+
"humao.rest-client",
29+
"adamhartford.vscode-base64",
30+
"Gruntfuggly.todo-tree",
31+
"bierner.markdown-preview-github-styles"
32+
]
33+
}

vsc-extension-quickstart.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Welcome to your VS Code Extension Pack
2+
3+
## What's in the folder
4+
5+
* This folder contains all of the files necessary for your extension pack.
6+
* `package.json` - this is the manifest file that defines the list of extensions of the extension pack.
7+
8+
## Get up and running straight away
9+
10+
* Press `F5` to open a new window with your extension loaded.
11+
* Open `Extensions Viewlet` and check your extensions are installed.
12+
13+
## Make changes
14+
15+
* You can relaunch the extension from the debug toolbar after making changes to the files listed above.
16+
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
17+
18+
## Install your extension
19+
20+
* To start using your extension with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
21+
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.

0 commit comments

Comments
 (0)