Skip to content

Commit 6a7a23c

Browse files
Fixed Composer Archive (#94)
1 parent 644adc8 commit 6a7a23c

File tree

3 files changed

+33
-18
lines changed

3 files changed

+33
-18
lines changed

.gitattributes

+29-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,32 @@
1-
* text=auto
1+
* text=auto
22

3-
*.txt text eol=lf
4-
*.md text eol=lf
5-
*.json text eol=lf
6-
*.yml text eol=lf
7-
*.xml text eol=lf
8-
.nvmrc text eol=lf
9-
*.ts text eol=lf
10-
*.js text eol=lf
11-
*.php text eol=lf
3+
# Mark code files with the correct EOL.
4+
*.txt text eol=lf
5+
*.md text eol=lf
6+
*.json text eol=lf
7+
*.yml text eol=lf
8+
*.xml text eol=lf
9+
.nvmrc text eol=lf
10+
*.ts text eol=lf
11+
*.js text eol=lf
12+
*.php text eol=lf
1213

1314
*.png binary
15+
16+
# Prevent Packagist from distributing some files.
17+
/.* export-ignore
18+
/README.md export-ignore
19+
/CHANGELOG.md export-ignore
20+
/src export-ignore
21+
/package.json export-ignore
22+
/package-lock.json export-ignore
23+
/node_modules export-ignore
24+
/composer.lock export-ignore
25+
/vendor export-ignore
26+
/extension.js export-ignore
27+
/extension.js.map export-ignore
28+
/jest.config.json export-ignore
29+
/*.tar export-ignore
30+
/*.vsix export-ignore
31+
/tsconfig.json export-ignore
32+
/webpack.config.js export-ignore

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.0.1] - 2024-01-29
10+
### Fixed
11+
- Composer package should not contain unnecessary files.
12+
913
## [3.0.0] - 2024-01-29
1014
### Added
1115
- Support using an `obliviousharmony/vscode-phpcs-integration` Composer package to provide

composer.json

-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@
1818
"vscode-phpcbf"
1919
],
2020
"readme": "assets/phpcs-integration/README.md",
21-
"archive": {
22-
"exclude": [
23-
"*",
24-
"!/composer.json",
25-
"!/LICENSE.txt",
26-
"!/assets/phpcs-integration"
27-
]
28-
},
2921
"prefer-stable": true,
3022
"minimum-stability": "dev",
3123
"require-dev": {

0 commit comments

Comments
 (0)