Skip to content

Commit c3a84cf

Browse files
committed
Init commit
0 parents  commit c3a84cf

File tree

6 files changed

+59
-0
lines changed

6 files changed

+59
-0
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Set default behavior to automatically normalize line endings.
2+
* text=auto
3+

.github/workflows/ci.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
jobs:
6+
release:
7+
name: Release and publish
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- run: npm install
12+
- uses: lannonbr/vsce-action@master
13+
with:
14+
args: "publish -p $PUBLISHER_TOKEN"
15+
env:
16+
PUBLISHER_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}

.gitignore

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

.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 "ibm-i-development-pack" 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

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "ibm-i-development-pack",
3+
"displayName": "IBM i Development Pack",
4+
"description": "Base extensions used for IBM i development in VS Code.",
5+
"version": "0.0.1",
6+
"engines": {
7+
"vscode": "^1.59.0"
8+
},
9+
"author": {
10+
"name": "Halcyon Tech Ltd",
11+
"url": "https://github.com/halcyon-tech"
12+
},
13+
"publisher": "halcyontechltd",
14+
"categories": [
15+
"Extension Packs"
16+
],
17+
"extensionPack": [
18+
"BrianJGarland.vscode-rpgfree",
19+
"barrettotte.ibmi-languages",
20+
"HalcyonTechLtd.code-for-ibmi",
21+
"HalcyonTechLtd.vscode-ibmi-walkthroughs",
22+
"HalcyonTechLtd.code-coverage-ibmi",
23+
"HalcyonTechLtd.git-client-ibmi"
24+
]
25+
}

0 commit comments

Comments
 (0)