Skip to content

Commit 264fab5

Browse files
committed
address comments and update correct dependencies
1 parent d4e5d95 commit 264fab5

File tree

5 files changed

+14
-63
lines changed

5 files changed

+14
-63
lines changed

packages/vue/__tests__/__snapshots__/exports.spec.ts.snap

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,6 @@ exports[`@aws-amplify/ui-vue exports should match snapshot 1`] = `
88
"Authenticator",
99
"AuthenticatorForceNewPasswordFormFields",
1010
"AuthenticatorSignUpFormFields",
11-
"BaseAlert",
12-
"BaseBox",
13-
"BaseFieldSet",
14-
"BaseFooter",
15-
"BaseForm",
16-
"BaseHeading",
17-
"BaseInput",
18-
"BaseLabel",
19-
"BaseSelect",
20-
"BaseSpacer",
21-
"BaseText",
22-
"BaseTwoTabItem",
23-
"BaseTwoTabs",
24-
"BaseWrapper",
2511
"ConfirmResetPassword",
2612
"ConfirmSignIn",
2713
"ConfirmSignUp",

packages/vue/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
],
2828
"scripts": {
2929
"prebuild": "rimraf dist",
30-
"build": "yarn build:catalog && yarn build:CSS && yarn build:rollup",
31-
"build:catalog": "yarn node -r esbuild-register scripts/generatePrimitiveCatalog.ts",
30+
"build": "yarn build:CSS && yarn build:rollup",
3231
"build:CSS": "yarn node -r esbuild-register scripts/copyCSS.ts",
3332
"build:rollup": "rollup --config",
3433
"dev": "yarn build:rollup --watch",
@@ -72,7 +71,7 @@
7271
},
7372
"peerDependencies": {
7473
"@aws-amplify/core": "*",
75-
"aws-amplify": "*",
74+
"aws-amplify": "^6.14.3",
7675
"vue": "^3.0"
7776
}
7877
}

packages/vue/scripts/generatePrimitiveCatalog.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/vue/src/index.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -111,21 +111,6 @@ export {
111111
AmplifyCheckBox,
112112
AmplifyButton,
113113
useAuthenticator,
114-
// Export primitive components
115-
BaseInput,
116-
BaseLabel,
117-
BaseSelect,
118-
BaseWrapper,
119-
BaseAlert,
120-
BaseBox,
121-
BaseFieldSet,
122-
BaseFooter,
123-
BaseForm,
124-
BaseHeading,
125-
BaseSpacer,
126-
BaseText,
127-
BaseTwoTabs,
128-
BaseTwoTabItem,
129114
};
130115

131116
/**

packages/vue/tsconfig.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,17 @@
44
"noImplicitAny": false,
55
"skipLibCheck": true,
66
"strictNullChecks": false,
7-
"types": [
8-
"node",
9-
"jest",
10-
"@testing-library/jest-dom",
11-
"vite/client"
12-
]
7+
"types": ["node", "jest", "@testing-library/jest-dom", "vite/client"]
138
},
14-
"include": ["*.ts", "*.mjs", "scripts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
9+
"include": [
10+
"__mocks__",
11+
"__tests__",
12+
"*.ts",
13+
"*.mjs",
14+
"scripts",
15+
"src/**/*.ts",
16+
"src/**/*.tsx",
17+
"src/**/*.vue"
18+
],
1519
"exclude": ["node_modules", "dist"]
16-
}
20+
}

0 commit comments

Comments
 (0)