Skip to content
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

Prepare all necessary JS artifacts for build task #25842

Merged
merged 20 commits into from
Oct 24, 2023
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8822f1f
Create script for setting the same version in all packages in monorepo
alexslavr Oct 18, 2023
e45e912
Include workspace root in script. Input version in workflow
alexslavr Oct 18, 2023
1c2647d
Copy artifacts for DXBuild
alexslavr Oct 19, 2023
b12d0ee
Clean up, add comments, copy bootstrap
alexslavr Oct 19, 2023
a5a3f7a
Fix naming, add "how to use", do not rewrite artifacts dir
alexslavr Oct 19, 2023
febfa55
Rename and fix workflow, add pull_request trigger for tests
alexslavr Oct 19, 2023
488446c
Add defaults in inputs / Update job name
Lykoi18 Oct 19, 2023
602f9df
Test "Update version" action
Lykoi18 Oct 19, 2023
925a0b0
Remove ref for checkout
Lykoi18 Oct 19, 2023
3989bfd
Setup git config
Lykoi18 Oct 20, 2023
e83036a
Update runner
Lykoi18 Oct 20, 2023
6137fa6
Revert testing changes
Lykoi18 Oct 20, 2023
977c5b9
Skip committing root package.json changes
Lykoi18 Oct 20, 2023
52ff15a
Update branch name for PR / Update PR title
Lykoi18 Oct 20, 2023
2bd3c34
Resolve conversations
Lykoi18 Oct 24, 2023
6f6b7e5
Merge remote-tracking branch 'origin/23_2' into prepare-build-artifacts
Lykoi18 Oct 24, 2023
d076609
Set actual version for devextreme-themebuilder and angular-playground
alexslavr Oct 24, 2023
e296f05
Remove condition for version replace in deps
alexslavr Oct 24, 2023
5ff9da2
Remove devextreme from dev deps in devextreme-angular, update lockfile
alexslavr Oct 24, 2023
e5b6508
Merge remote-tracking branch 'origin/23_2' into prepare-build-artifacts
Lykoi18 Oct 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Skip committing root package.json changes
Lykoi18 committed Oct 20, 2023
commit 977c5b97f60dc6d07e0581b32896c35bf3481324
2 changes: 1 addition & 1 deletion build/update-version.ts
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ const MONOREPO_ROOT = path.join(__dirname, '..');
const packagesPath = path.join(MONOREPO_ROOT, 'packages', '**', 'package.json');
const playgroundsPath = path.join(MONOREPO_ROOT, 'playgrounds', '**', 'package.json');

sh.exec(`npm version ${version} -ws --include-workspace-root --workspaces-update=false`);
sh.exec(`npm version ${version} -ws --include-workspace-root --git-tag-version=false --workspaces-update=false`);

const setStrictVersion = /.*-(build|alpha|beta).*/.test(version);