Skip to content

Commit d6d3532

Browse files
committed
chore: rename packages to final name schemes before launch
1 parent d3e097b commit d6d3532

File tree

140 files changed

+851
-951
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+851
-951
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ module.exports = {
66
'jest.config.js',
77
'.eslintrc.js',
88
'commitlint.config.js',
9-
'packages/amplify-ui-codegen-schema',
109
'packages/integration-test',
1110
'ui-components',
1211
'*.md',

.github/workflows/check.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Checkout Studio Codegen
5757
uses: actions/checkout@v2
5858
with:
59-
path: amplify-codegen-ui-staging
59+
path: amplify-codegen-ui
6060
- name: Checkout Amplify CLI Studio Category
6161
uses: actions/checkout@v2
6262
with:
@@ -67,26 +67,26 @@ jobs:
6767
uses: actions/setup-node@v2
6868
with:
6969
node-version: lts/*
70-
- name: Install amplify-codegen-ui-staging dependencies
71-
working-directory: amplify-codegen-ui-staging
70+
- name: Install amplify-codegen-ui dependencies
71+
working-directory: amplify-codegen-ui
7272
run: npm ci
73-
- name: Lerna bootstrap amplify-codegen-ui-staging
74-
working-directory: amplify-codegen-ui-staging
73+
- name: Lerna bootstrap amplify-codegen-ui
74+
working-directory: amplify-codegen-ui
7575
run: lerna bootstrap
76-
- name: Build amplify-codegen-ui-staging
77-
working-directory: amplify-codegen-ui-staging
76+
- name: Build amplify-codegen-ui
77+
working-directory: amplify-codegen-ui
7878
run: npm run build
79-
- name: Package amplify-codegen-ui-staging
80-
working-directory: amplify-codegen-ui-staging
79+
- name: Package amplify-codegen-ui
80+
working-directory: amplify-codegen-ui
8181
run: lerna exec npm pack
8282
- name: Install amplify-category-studio
8383
working-directory: amplify-category-studio
8484
run: |
8585
npm install
8686
npm install amplify-provider-awscloudformation
8787
npm install aws-sdk.tgz
88-
npm install ../amplify-codegen-ui-staging/packages/studio-ui-codegen/amzn-studio-ui-codegen-*.tgz
89-
npm install ../amplify-codegen-ui-staging/packages/studio-ui-codegen-react/amzn-studio-ui-codegen-react-*.tgz
88+
npm install ../amplify-codegen-ui/packages/codegen-ui/aws-amplify-codegen-ui-*.tgz
89+
npm install ../amplify-codegen-ui/packages/codegen-ui-react/aws-amplify-codegen-ui-react-*.tgz
9090
- name: Test amplify-category-studio
9191
working-directory: amplify-category-studio
9292
run: npm test

.prettierignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
.husky
2-
packages/ui-react-types
3-
packages/amplify-ui-codegen-schema
42
ui-components

CHANGELOG.md

Lines changed: 383 additions & 414 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ There are 3 keys steps, first you need to create a new tagged release version of
7070
1. Squash and merge PR after approval.
7171
Ensure the commit message follows the pattern: `chore(release): v{version_number}`.
7272
The Release GitHub workflow will not work if the commit message is not formated correctly.
73-
1. Wait for the [Release GithHub workflow](https://github.com/aws-amplify/amplify-codegen-ui-staging/actions/workflows/release.yml) to complete.
73+
1. Wait for the [Release GithHub workflow](https://github.com/aws-amplify/amplify-codegen-ui/actions/workflows/release.yml) to complete.
7474

7575
\*\*N.B. Ensure that your release has a tag, manually creating if necessary. Only major/minor updates seem to automatically generate tags, but you can create one yourself with the [git-tag](https://git-scm.com/docs/git-tag) command.
7676

jest.config.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,9 @@ module.exports = {
44
verbose: true,
55
testRunner: 'jest-circus/runner',
66
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
7-
testPathIgnorePatterns: [
8-
'**/*.d.ts',
9-
'**/__e2e__/',
10-
'**/__integration__/'
11-
],
7+
testPathIgnorePatterns: ['**/*.d.ts', '**/__e2e__/', '**/__integration__/'],
128
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'core', 'node'],
139
collectCoverage: true,
1410
collectCoverageFrom: ['src/**/.(ts|tsx|js|jsx)$', '!src/**/*.test.(ts|tsx|js|jsx)$', '!src/**/*.d.ts'],
15-
projects: [
16-
'<rootDir>/packages/studio-ui-codegen-react',
17-
],
18-
};
11+
projects: ['<rootDir>/packages/codegen-ui-react'],
12+
};

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@amzn/amplify-uicodegen",
2+
"name": "@aws-amplify/amplify-codegen-ui",
33
"version": "0.1.0",
44
"description": "",
55
"author": "Amazon Web Services",

0 commit comments

Comments
 (0)