Skip to content

Commit

Permalink
chore(liveness): set up publishing new ui-react-liveness package (#759)
Browse files Browse the repository at this point in the history
* chore(liveness): set up publishing new ui-react-liveness package

* update package.json and gitignore

* Update packages/react-liveness/package.json

Co-authored-by: Caleb Pollman <[email protected]>

* Update packages/react-liveness/package.json

Co-authored-by: Caleb Pollman <[email protected]>

* remove coma

---------

Co-authored-by: Caleb Pollman <[email protected]>
  • Loading branch information
thaddmt and calebpollman authored Mar 2, 2023
1 parent f8eb41f commit 9b9378e
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/changeset-presets/bump-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
'@aws-amplify/ui-react': minor
'@aws-amplify/ui-react-core': patch
'@aws-amplify/ui-react-native': major
'@aws-amplify/ui-react-liveness': minor
---

Version bump for ui, ui-react, ui-react-native and ui-react-core packages
Version bump for ui, ui-react, ui-react-native, ui-react-liveness and ui-react-core packages
1 change: 1 addition & 0 deletions .github/changeset-presets/bump-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
'@aws-amplify/ui-vue': patch
'@aws-amplify/ui-react-core': patch
'@aws-amplify/ui-react-native': patch
'@aws-amplify/ui-react-liveness': patch
---

Version bump for all public packages
4 changes: 4 additions & 0 deletions packages/react-liveness/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# ignore jest generated coverage directory
coverage

dist
Empty file.
25 changes: 25 additions & 0 deletions packages/react-liveness/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@aws-amplify/ui-react-liveness",
"version": "0.0.1",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https:/aws-amplify/amplify-ui",
"directory": "packages/react-liveness"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {},
"dependencies": {}
}
1 change: 1 addition & 0 deletions packages/react-liveness/src/version.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const VERSION = '0.0.0-liveness-20d2db2-20230302053408';
1 change: 1 addition & 0 deletions scripts/generateVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const packages = [
'packages/angular/projects/ui-angular',
'packages/react',
'packages/react-native',
'packages/react-liveness',
'packages/vue',
];

Expand Down

0 comments on commit 9b9378e

Please sign in to comment.