-
Notifications
You must be signed in to change notification settings - Fork 672
chore: Remove gulp from app demos #33495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ajivanyandev
wants to merge
18
commits into
26_1
Choose a base branch
from
gulp/remove-gulp-from-app-demos
base: 26_1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
744523e
remove gulp from apps demos
ajivanyandev 899365d
update lock
ajivanyandev cc671e0
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
ajivanyandev 80d15af
move copy logic, remove comments
ajivanyandev 051e9c4
review fixes
ajivanyandev aab3d69
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
ajivanyandev 7cf9e24
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
ajivanyandev 0270968
review fixes
ajivanyandev 449cc35
review fix
ajivanyandev a9282f1
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
ajivanyandev 2593790
Potential fix for pull request finding
ajivanyandev 28ddab9
review fixes
ajivanyandev 7cce17a
Merge branch '26_1' of https://github.com/DevExpress/DevExtreme into …
GoodDayForSurf dc6e592
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
GoodDayForSurf b764a53
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
GoodDayForSurf 8a9481f
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
GoodDayForSurf 8a8d25a
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
GoodDayForSurf 98590d2
Merge branch '26_1' into gulp/remove-gulp-from-app-demos
GoodDayForSurf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,7 +22,6 @@ bundles | |
| changed-files.json | ||
|
|
||
| !.vscode/settings.json | ||
| gulpfile.js/.eslintrc.js | ||
|
|
||
| shared/empty-file.js | ||
|
|
||
|
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| const { copyBundlesFolder, build } = require('../utils/bundle'); | ||
|
|
||
| async function main() { | ||
| copyBundlesFolder(); | ||
| console.log('copy-bundles: done'); | ||
|
|
||
| const frameworks = ['vue', 'angular', 'react']; | ||
| await Promise.all( | ||
| frameworks.map(async (framework) => { | ||
| console.log(`bundle-${framework}: starting...`); | ||
| await build(framework); | ||
| console.log(`bundle-${framework}: done`); | ||
| }) | ||
| ); | ||
|
GoodDayForSurf marked this conversation as resolved.
Comment on lines
+7
to
+14
|
||
|
|
||
| console.log('build-bundles: done'); | ||
| } | ||
|
|
||
| main().catch((err) => { | ||
| console.error('build-bundles failed:', err); | ||
| process.exit(1); | ||
| }); | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| const { join } = require('path'); | ||
| const { init } = require('../utils/shared/config-helper'); | ||
| const createConfig = require('../utils/internal/create-config'); | ||
| const { copyJsSharedResources } = require('../utils/copy-shared-resources/copy'); | ||
|
|
||
| const demosDir = join(__dirname, '..', 'Demos'); | ||
|
|
||
| init(); | ||
| copyJsSharedResources(() => {}); | ||
| createConfig.useBundles = false; | ||
| createConfig.run(demosDir); | ||
|
|
||
| console.log('prepare-js-configs: done'); |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| const { copyJsSharedResources, copyMvcSharedResources } = require('../utils/copy-shared-resources/copy'); | ||
|
|
||
| copyJsSharedResources(() => { | ||
| copyMvcSharedResources(() => { | ||
| console.log('prepare-shared: done'); | ||
| }); | ||
| }); |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| const { join } = require('path'); | ||
| const createConfig = require('../utils/internal/create-config'); | ||
|
|
||
| const demosDir = join(__dirname, '..', 'Demos'); | ||
|
|
||
| createConfig.useBundles = true; | ||
| createConfig.run(demosDir); | ||
|
|
||
| console.log('update-config: done'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.