-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking change: extension registry support (#148)
* nui ext generator + new action gen * asset compute and ff generator * add blank generator * support for default legacy generator * integrate new config changes * fix application generator * cleanup skip-install * fix extensions config naming * node 10 => 14 * update extension names * added changes for add action * fixes for aio app add action * fixes for add aaction & move delete to app plugin * add webassets, delete webassets in app plugin * add events * expose via index.js * support for relative path to config * fix: shared lib relative path in shared lib test file * fix: shared lib relative path in shared lib test file (#147) * Ext Reg fixes: extension generator edits (#149) 1. change the e2e test file name from `{action}.e2e.js` to `{action}.e2e.test.js` (pattern matching for tests in jest) 2. add the `test` hook to dx-asset-compute for new `aio app test` functionality 3. `e2e` and `test` folders for now relative to where the actions folder is (as a sibling folder). For a --no-extensions application, it will be in the root of the project, for an extension, it is wherever the extension is installed, not the root. 4. `asset-compute` generator: change the test folder bulk copy location (from the root `test` folder to the new location) and remove the installation of the test script in `package.json` 5. remove `base-app` file `test/jest.setup.js` from `test` folder to root folder. If there were extensions installed, having this single file in the `test` folder doesn't make sense. * worker opcode is apply (#150) * fix: pass in runtime packagename to e2e test template (#152) * Fix generator unit tests for ext reg changes (#153) * Update generator CI/CD templates for ext reg (#155) * Update generator CI/CD templates to use latest apps action Auth command to generate token * Update CLI version to be 8.x.x * Rename nui operation (#154) * process => worker process Co-authored-by: Moritz Raho <[email protected]> Co-authored-by: Shazron Abdullah <[email protected]> Co-authored-by: sandeep-paliwal <[email protected]> Co-authored-by: Jesse MacFadyen <[email protected]>
- Loading branch information
1 parent
f2ee2e2
commit f65601c
Showing
59 changed files
with
1,482 additions
and
1,774 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
package-lock=false | ||
tag-version-prefix="" | ||
preid="next" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,19 +25,30 @@ jobs: | |
uses: adobe/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
version: 7.x.x | ||
version: 8.x.x | ||
- name: Build | ||
env: | ||
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_PROD }} | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: build | ||
- name: Auth | ||
uses: adobe/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
command: auth | ||
CLIENTID: ${{ secrets.CLIENTID_PROD }} | ||
CLIENTSECRET: ${{ secrets.CLIENTSECRET_PROD }} | ||
TECHNICALACCOUNTID: ${{ secrets.TECHNICALACCID_PROD }} | ||
IMSORGID: ${{ secrets.IMSORGID_PROD }} | ||
SCOPES: ${{ secrets.SCOPES_PROD }} | ||
KEY: ${{ secrets.KEY_PROD }} | ||
- name: Deploy | ||
env: | ||
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_PROD }} | ||
AIO_RUNTIME_AUTH: ${{ secrets.AIO_RUNTIME_AUTH_PROD }} | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,19 +26,30 @@ jobs: | |
uses: adobe/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
version: 7.x.x | ||
version: 8.x.x | ||
- name: Build | ||
env: | ||
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_STAGE }} | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: build | ||
- name: Auth | ||
uses: adobe/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
command: auth | ||
CLIENTID: ${{ secrets.CLIENTID_STAGE }} | ||
CLIENTSECRET: ${{ secrets.CLIENTSECRET_STAGE }} | ||
TECHNICALACCOUNTID: ${{ secrets.TECHNICALACCID_STAGE }} | ||
IMSORGID: ${{ secrets.IMSORGID_STAGE }} | ||
SCOPES: ${{ secrets.SCOPES_STAGE }} | ||
KEY: ${{ secrets.KEY_STAGE }} | ||
- name: Deploy | ||
env: | ||
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_STAGE }} | ||
AIO_RUNTIME_AUTH: ${{ secrets.AIO_RUNTIME_AUTH_STAGE }} | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,16 +22,16 @@ jobs: | |
uses: adobe/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
version: 7.x.x | ||
version: 8.x.x | ||
- name: Build | ||
env: | ||
AIO_RUNTIME_NAMESPACE: ${{ secrets.AIO_RUNTIME_NAMESPACE_STAGE }} | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: build | ||
- name: Test | ||
uses: adobe/aio-apps-action@1.1.0 | ||
uses: adobe/aio-apps-action@2.0.0 | ||
with: | ||
os: ${{ matrix.os }} | ||
command: test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Why is React set on
window
?