diff --git a/CHANGELOG.md b/CHANGELOG.md index ea08e92..2436ecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.2.0](https://github.com/googleworkspace/drive-picker-element/compare/v0.1.2...v0.2.0) (2024-11-25) + + +### Features + +* rewrite without lit and cleanup public interface ([#16](https://github.com/googleworkspace/drive-picker-element/issues/16)) ([e01327f](https://github.com/googleworkspace/drive-picker-element/commit/e01327f938d648e97c468e9ff3dcc81968283dd6)) + + +### Bug Fixes + +* remove todos and use latest @types/google.picker ([#10](https://github.com/googleworkspace/drive-picker-element/issues/10)) ([fea7bbc](https://github.com/googleworkspace/drive-picker-element/commit/fea7bbcc118f1f1fe3a890243778609521860142)) + ## [0.1.2](https://github.com/googleworkspace/drive-picker-element/compare/v0.1.1...v0.1.2) (2024-08-30) diff --git a/package.json b/package.json index d1b0266..9c18071 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@googleworkspace/drive-picker-element", - "version": "0.1.2", + "version": "0.2.0", "description": "A web component for Google Drive Picker", "license": "Apache-2.0", "author": { @@ -21,7 +21,11 @@ }, "./package.json": "./package.json" }, - "files": ["dist", "src", "custom-elements.json"], + "files": [ + "dist", + "src", + "custom-elements.json" + ], "homepage": "https://github.com/googleworkspace/drive-picker-element", "repository": { "type": "git", @@ -84,30 +88,55 @@ }, "build:components": { "command": "tsup", - "files": ["src/**/*.ts", "tsup.config.ts"], - "output": ["dist/**/*.(js|ts|map)"] + "files": [ + "src/**/*.ts", + "tsup.config.ts" + ], + "output": [ + "dist/**/*.(js|ts|map)" + ] }, "build:manifest": { "command": "cem analyze --config cem.config.js && biome check --fix custom-elements.json", - "files": ["src/**/*.ts", "cem.config.js"], - "output": ["custom-elements.json"] + "files": [ + "src/**/*.ts", + "cem.config.js" + ], + "output": [ + "custom-elements.json" + ] }, "build:readme": { "clean": false, "command": "tsx ./scripts/docs.ts", - "files": ["custom-elements.json", "scripts/**/*.ts", "README.md"], - "output": ["README.md"], - "dependencies": ["build:manifest"] + "files": [ + "custom-elements.json", + "scripts/**/*.ts", + "README.md" + ], + "output": [ + "README.md" + ], + "dependencies": [ + "build:manifest" + ] }, "build:storybook": { "command": "storybook build", - "files": ["src/**/*.ts", "stories/**/*.ts"], - "output": ["dist/storybook"] + "files": [ + "src/**/*.ts", + "stories/**/*.ts" + ], + "output": [ + "dist/storybook" + ] }, "storybook": { "service": true, "command": "storybook dev -p 6006", - "dependencies": ["build:manifest"] + "dependencies": [ + "build:manifest" + ] } }, "husky": {