Skip to content

Commit

Permalink
Add iframeResizer lib to GH demos + remove license check (#3197)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanblinov2k17 authored Apr 26, 2024
1 parent d9504f3 commit aa7049e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/publish-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Install Internal Packages
uses: DevExpress/github-actions/install-internal-package@main
with:
install-dist: true

- name: Install stable devextreme pacakges
run: npm install devextreme@${{ env.STABLE_VERSION }} devextreme-angular@${{ env.STABLE_VERSION }} devextreme-react@${{ env.STABLE_VERSION }} devextreme-vue@${{ env.STABLE_VERSION }}
run: npm install devextreme-angular@${{ env.STABLE_VERSION }} devextreme-react@${{ env.STABLE_VERSION }} devextreme-vue@${{ env.STABLE_VERSION }}

- name: Copy metadata
run: npm run make-demos-bundle -- --copy-metadata
Expand Down Expand Up @@ -88,9 +93,14 @@ jobs:

- name: Install Dependencies
run: npm install

- name: Install Internal Packages
uses: DevExpress/github-actions/install-internal-package@main
with:
install-dist: true

- name: Install stable devextreme pacakges
run: npm install devextreme@${{ env.STABLE_VERSION }} devextreme-angular@${{ env.STABLE_VERSION }} devextreme-react@${{ env.STABLE_VERSION }} devextreme-vue@${{ env.STABLE_VERSION }}
run: npm install devextreme-angular@${{ env.STABLE_VERSION }} devextreme-react@${{ env.STABLE_VERSION }} devextreme-vue@${{ env.STABLE_VERSION }}

- name: Copy metadata
run: npm run make-demos-bundle -- --copy-metadata
Expand Down
1 change: 1 addition & 0 deletions utils/create-bundles/Angular/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
<script type="application/javascript">
DXDemoTheme("{{dx_version}}");
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/iframeResizer.contentWindow.min.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions utils/create-bundles/React/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
document.head.appendChild(scriptBundle);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/iframeResizer.contentWindow.min.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions utils/create-bundles/Vue/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
document.head.appendChild(scriptBundle);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/iframeResizer.contentWindow.min.js"></script>
</body>
</html>

0 comments on commit aa7049e

Please sign in to comment.