Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Composer Archive #94

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 29 additions & 10 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
* text=auto
* text=auto

*.txt text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.xml text eol=lf
.nvmrc text eol=lf
*.ts text eol=lf
*.js text eol=lf
*.php text eol=lf
# Mark code files with the correct EOL.
*.txt text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.xml text eol=lf
.nvmrc text eol=lf
*.ts text eol=lf
*.js text eol=lf
*.php text eol=lf

*.png binary

# Prevent Packagist from distributing some files.
/.* export-ignore
/README.md export-ignore
/CHANGELOG.md export-ignore
/src export-ignore
/package.json export-ignore
/package-lock.json export-ignore
/node_modules export-ignore
/composer.lock export-ignore
/vendor export-ignore
/extension.js export-ignore
/extension.js.map export-ignore
/jest.config.json export-ignore
/*.tar export-ignore
/*.vsix export-ignore
/tsconfig.json export-ignore
/webpack.config.js export-ignore
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1] - 2024-01-29
### Fixed
- Composer package should not contain unnecessary files.

## [3.0.0] - 2024-01-29
### Added
- Support using an `obliviousharmony/vscode-phpcs-integration` Composer package to provide
Expand Down
8 changes: 0 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@
"vscode-phpcbf"
],
"readme": "assets/phpcs-integration/README.md",
"archive": {
"exclude": [
"*",
"!/composer.json",
"!/LICENSE.txt",
"!/assets/phpcs-integration"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
Expand Down
Loading