-
Notifications
You must be signed in to change notification settings - Fork 222
Open
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
vsce version 3.1.1
I'm trying to skip photoshop source images in my assets directory.
I've tried this in package.json:
"files": [
"dist/**/*.js",
"assets/*",
"!assets/*.psd",
"LICENSE.txt"
],
which gave:
ERROR The following include patterns in the "files" property in package.json do not match any files packaged in the extension:
- D:/dev/vscode_ext/modules/!assets/*.psd
Remove any include pattern which is not needed.
and this in .vscodeignore:
# Ignore everything by default
*
*/**
# Then explicitly include what you want
!dist/**/*.js
!assets/**
!LICENSE.txt
!README.md
!package.json
# Exclude specific files
assets/icon.psd
**/*.psd
**/*.PSD
Which gave no errors, but included the psds anyway.
I'm assuming this is a bug, but if I'm just doing this wrong, apologies!
Adrian Stephens
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality