Skip to content

Commit

Permalink
build: explicitly declare what to package
Browse files Browse the repository at this point in the history
  • Loading branch information
VitGottwald committed Apr 13, 2023
1 parent 1395cf0 commit 8c09921
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 10 deletions.
25 changes: 25 additions & 0 deletions clients/daco-dialect-support/.vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Ignore everything
*
**/*
../**/*

# Add what we actually want

# * extension metadata
!LICENSE
!README.md
!CHANGELOG.md
!resources/logo.png
!package.json
# * extension code
!out/extension.js
!out/extension.js.map
# ** dialect snippets
!snippets.json
# ** dialect implementation
!server/jar/dialect-daco.jar

# * dialect registration VS Code API
!node_modules/@code4z/cobol-dialect-api/package.json
!node_modules/@code4z/cobol-dialect-api/lib/index.js
!node_modules/@code4z/cobol-dialect-api/lib/index.d.ts
35 changes: 25 additions & 10 deletions clients/idms-dialect-support/.vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
.vscode/**
.vscode-test/**
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
# Ignore everything
*
**/*
../**/*

# Add what we actually want

# * extension metadata
!LICENSE
!README.md
!CHANGELOG.md
!resources/logo.png
!package.json
# * extension code
!out/extension.js
!out/extension.js.map
# ** dialect snippets
!snippets.json
# ** dialect implementation
!server/jar/dialect-idms.jar

# * dialect registration VS Code API
!node_modules/@code4z/cobol-dialect-api/package.json
!node_modules/@code4z/cobol-dialect-api/lib/index.js
!node_modules/@code4z/cobol-dialect-api/lib/index.d.ts

0 comments on commit 8c09921

Please sign in to comment.