Skip to content

Commit

Permalink
chore(main): release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
googleworkspace-bot committed Nov 25, 2024
1 parent e01327f commit 9f6787e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 12 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
53 changes: 41 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down

0 comments on commit 9f6787e

Please sign in to comment.