Skip to content

Commit

Permalink
Merge pull request #1268 from scheduleonce/staging-app2
Browse files Browse the repository at this point in the history
Merging staging-app2 in to master.
  • Loading branch information
OhTanishJain authored Oct 10, 2024
2 parents 00c2d79 + 144f2a5 commit e3c6439
Show file tree
Hide file tree
Showing 83 changed files with 15,680 additions and 19,442 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"files": ["*.ts"],
"parserOptions": {
"project": ["tsconfig.json"],
"createDefaultProgram": true
"createDefaultProgram": true,
"sourceType": "module"
},
"extends": [
"plugin:@angular-eslint/recommended",
Expand Down Expand Up @@ -50,6 +51,10 @@
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-base-to-string": "off",
"@angular-eslint/component-selector": [
"error",
{
Expand Down
8 changes: 4 additions & 4 deletions .lighthouse/jenkins-x/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,28 +269,28 @@ spec:
command:
- /bin/sh
- -c
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v18.13.0
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v20.14.0
name: install-packages
- args:
- npm run prettier
command:
- /bin/sh
- -c
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v18.13.0
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v20.14.0
name: check-prettier
- args:
- npm run lint
command:
- /bin/sh
- -c
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v18.13.0
image: dockeronce.azurecr.io/cloudbees/nodejs:sonf-v20.14.0
name: check-lint
- args:
- export NODE_ENV="test" && npm run test
command:
- /bin/sh
- -c
image: dockeronce.azurecr.io/oncehub/nodejs:angular-v20.14.0
image: dockeronce.azurecr.io/oncehub/nodejs:angular-v20.17.0
name: unit-tests
- args:
- echo "Pushing image $DOCKER_REGISTRY/$REPO_NAME:$(cat VERSION)-PR-${PULL_NUMBER}..." && cp /tekton/creds-secrets/tekton-container-registry-auth/.dockerconfigjson /kaniko/.docker/config.json
Expand Down
2 changes: 1 addition & 1 deletion .lighthouse/jenkins-x/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ spec:
command:
- /bin/sh
- -c
image: dockeronce.azurecr.io/oncehub/nodejs:angular-v18.16.0
image: dockeronce.azurecr.io/oncehub/nodejs:angular-v20.14.0
name: package-build-publish
resources: {}
volumes:
Expand Down
6 changes: 2 additions & 4 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
module.exports = {
stories: [
'../ui/src/stories/**/*.stories.mdx',
'../ui/src/stories/**/*.mdx',
'../ui/src/stories/**/*.stories.@(js|jsx|ts|tsx)',
],
addons: ['@storybook/addon-essentials', '@storybook/addon-mdx-gfm'],
framework: {
name: '@storybook/angular',
options: {},
},
docs: {
autodocs: true,
},
docs: {},
};
1 change: 1 addition & 0 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ export const parameters = {
},
docs: { inlineStories: true },
};
// export const tags = ['autodocs'];
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.0.33] - 2024-09-20

- [ONCEHUB-87445](https://scheduleonce.atlassian.net/browse/ONCEHUB-87445) fix: Adding Single and multi select with single action option in storybook.

## [8.0.32] - 2024-09-20

- [ONCEHUB-87445](https://scheduleonce.atlassian.net/browse/ONCEHUB-87445) fix: Update storybook in once-ui to version 8.x.

## [8.0.30] - 2024-09-05

- [ONCEHUB-83076](https://scheduleonce.atlassian.net/issues/ONCEHUB-87251) fix: Vulnerability in package webpack.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM dockeronce.azurecr.io/node:20.14.0-alpine3.20 AS build
FROM dockeronce.azurecr.io/node:20.17.0-alpine3.20 AS build
WORKDIR /app/website
COPY . /app/website
RUN chown root:root .
Expand Down
2,647 changes: 1,695 additions & 952 deletions documentation.json

Large diffs are not rendered by default.

234 changes: 234 additions & 0 deletions migration-storybook.log

Large diffs are not rendered by default.

Loading

0 comments on commit e3c6439

Please sign in to comment.