-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/redesign #31
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
dvs39
wants to merge
26
commits into
dev
Choose a base branch
from
feat/redesign
base: dev
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
Feat/redesign #31
Changes from 3 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
feac1da
VM-1580: Update to vc-shell 1.1
dvs39 060dcc1
Add logic to determine npm tag based on package versions in GitHub Ac…
dvs39 a9a9958
Update module manifest and CI workflow to include new Import App buil…
dvs39 90ae3c5
release: v1.1.0 with npm tag next
dvs39 0e32362
Remove redundant action
dvs39 0b81625
Update ubuntu to 24.04
dvs39 a502b08
Update directory to import-app-new
dvs39 6652e29
Temporary remove build-import-app action
dvs39 dcd39aa
Add step to activate yarn@4.0.2
dvs39 313a90f
Remove redundant step from import-app-new
dvs39 d330c31
Add old import app
dvs39 19c2fbe
Update publish script for "next" version
dvs39 3efe901
Include import-app-new/dist in publish output
dvs39 3273696
Update @vc-shell packages to version 1.1.5 in package.json and yarn.lock
maksimzinchuk e2b8667
Rename package from "@virtocommerce/import-app" to "@virtocommerce/im…
maksimzinchuk 4a2d821
Update yarn.lock to reflect changes in package resolutions for @virto…
maksimzinchuk 03ac6ae
Fix publish command in build-import-app-new action to reference the c…
maksimzinchuk 75967fb
Update package.json to correct package name from "@virtocommerce/impo…
maksimzinchuk e7e1d72
Refactor import references from "@virtocommerce/import-app" to "@virt…
maksimzinchuk 7596384
release: v1.1.0 with npm tag next
maksimzinchuk afb05cd
release: v1.1.1 with npm tag next
maksimzinchuk 489e1bd
Refactor icons in import components and pages to use Material Design …
maksimzinchuk c7fe002
release: v1.1.2 with npm tag next
maksimzinchuk 058a063
Refactor icon binding in ImportStat component and update blade resolu…
maksimzinchuk 61d9541
release: v1.1.3 with npm tag next
maksimzinchuk a675b48
remove old import app
maksimzinchuk 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # v2.0.0 | ||
| name: Build Import App New | ||
|
|
||
| inputs: | ||
| githubToken: | ||
| description: "GitHub Token" | ||
| required: true | ||
| npmToken: | ||
| description: "NPM Token" | ||
| required: true | ||
|
|
||
| runs: | ||
| using: composite | ||
|
|
||
| steps: | ||
| - name: Set Vendor Portal ref | ||
| shell: bash | ||
| run: | | ||
| echo "REF=feat/redesign" >> $GITHUB_ENV | ||
|
|
||
| - name: Checkout Import module | ||
| uses: actions/checkout@v3 | ||
| with: | ||
| repository: "VirtoCommerce/vc-module-import" | ||
| token: ${{ inputs.githubToken }} | ||
| path: "src/VirtoCommerce.ImportModule.Web/import-app" | ||
| ref: ${{ env.REF }} | ||
|
|
||
| - name: Install dependencies for Import App | ||
| shell: bash | ||
| working-directory: src/VirtoCommerce.ImportModule.Web/import-app | ||
| run: yarn | ||
|
|
||
| - name: Build Import Module | ||
| shell: bash | ||
| working-directory: src/VirtoCommerce.ImportModule.Web/import-app | ||
| run: yarn bootstrap | ||
|
|
||
| - name: Add auth token | ||
| shell: bash | ||
| working-directory: src/VirtoCommerce.ImportModule.Web/import-app | ||
| run: | | ||
| yarn config set --json npmRegistries '{ "//registry.npmjs.org": { "npmAuthToken": "'"${NPM_TOKEN}"'" } }' | ||
| env: | ||
| NPM_TOKEN: ${{ inputs.npmToken }} | ||
|
|
||
| - name: Check for NPM tag | ||
| shell: bash | ||
| working-directory: "src/VirtoCommerce.ImportModule.Web/import-app" | ||
| run: | | ||
| # Set default tag | ||
| NPM_TAG="latest" | ||
|
|
||
| # Check if package.json has npmTag | ||
| if [ -f "package.json" ]; then | ||
| NPM_TAG_FROM_PKG=$(node -p "try { const pkg = require('./package.json'); pkg.npmTag || ''; } catch(e) { '' }") | ||
| if [ ! -z "$NPM_TAG_FROM_PKG" ] && [ "$NPM_TAG_FROM_PKG" != "undefined" ] && [ "$NPM_TAG_FROM_PKG" != "null" ]; then | ||
| echo "Found npmTag in package.json: $NPM_TAG_FROM_PKG" | ||
| NPM_TAG="$NPM_TAG_FROM_PKG" | ||
| fi | ||
| fi | ||
|
|
||
| # Save to environment for later steps | ||
| echo "NPM_TAG=$NPM_TAG" >> $GITHUB_ENV | ||
| echo "Will publish with npm tag: $NPM_TAG" | ||
|
|
||
| - name: Publish Import module | ||
| shell: bash | ||
| working-directory: src/VirtoCommerce.ImportModule.Web/import-app | ||
| run: | | ||
| if [ "$NPM_TAG" = "latest" ]; then | ||
| yarn run publish || true | ||
| else | ||
| yarn run publish:tag --tag=$NPM_TAG || true | ||
dvs39 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| fi | ||
|
|
||
| - name: Build Import App | ||
| shell: bash | ||
| working-directory: src/VirtoCommerce.ImportModule.Web/import-app | ||
| run: yarn build | ||
|
|
||
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
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
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
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
10 changes: 0 additions & 10 deletions
10
src/VirtoCommerce.ImportModule.Web/import-app/src/styles/colors.scss
This file was deleted.
Oops, something went wrong.
6 changes: 2 additions & 4 deletions
6
src/VirtoCommerce.ImportModule.Web/import-app/src/styles/index.scss
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 |
|---|---|---|
| @@ -1,9 +1,7 @@ | ||
| @use 'custom'; | ||
|
|
||
| @tailwind base; | ||
|
|
||
| @tailwind components; | ||
|
|
||
| @import 'colors'; | ||
|
|
||
| @import 'custom'; | ||
|
|
||
| @tailwind utilities; |
2 changes: 1 addition & 1 deletion
2
src/VirtoCommerce.ImportModule.Web/import-app/tsconfig.tsbuildinfo
Large diffs are not rendered by default.
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
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.