Skip to content

Commit 0ece85d

Browse files
committed
Fix export
1 parent 1c3cca4 commit 0ece85d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [1.0.1] - 2021-07-14
10+
11+
### Changed
12+
13+
- Fix the export to work in non-TypeScript environments.
14+
915
## [1.0.0] - 2021-07-14
1016

1117
### Added
@@ -143,7 +149,8 @@ and it will maintain your formatting.
143149

144150
- Initial release 🎉
145151

146-
[unreleased]: https://github.com/prettier/plugin-xml/compare/v1.0.0...HEAD
152+
[unreleased]: https://github.com/prettier/plugin-xml/compare/v1.0.1...HEAD
153+
[1.0.1]: https://github.com/prettier/plugin-xml/compare/v1.0.0...v1.0.1
147154
[1.0.0]: https://github.com/prettier/plugin-xml/compare/v0.13.1...v1.0.0
148155
[0.13.1]: https://github.com/prettier/plugin-xml/compare/v0.13.0...v0.13.1
149156
[0.13.0]: https://github.com/prettier/plugin-xml/compare/v0.12.0...v0.13.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prettier/plugin-xml",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "prettier plugin for XML",
55
"main": "dist/plugin.js",
66
"scripts": {

src/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ const plugin: Plugin<XMLAst> = {
185185
}
186186
};
187187

188-
export default plugin;
188+
export = plugin;

0 commit comments

Comments
 (0)