Skip to content

Commit 3671893

Browse files
committed
chore(deps): update dependency rollup to v4.24.4
1 parent a4d9aca commit 3671893

File tree

19 files changed

+792
-399
lines changed

19 files changed

+792
-399
lines changed

.github/workflows/ci.yml

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ jobs:
129129
name: react-auth-docs
130130
path: ./packages/react-auth/docs/
131131

132-
build-react-mui-audit-log-viewer-docs:
133-
runs-on: ubuntu-latest
132+
build-react-mui-audit-log-viewer:
133+
runs-on: ubuntu-24.04
134134
defaults:
135135
run:
136136
working-directory: ./packages/react-mui-audit-log-viewer
@@ -154,15 +154,21 @@ jobs:
154154
- name: Type check
155155
run: yarn typecheck
156156

157-
- name: Build Docs
158-
run: yarn build-docs
157+
- name: Build
158+
run: yarn build
159159

160160
- name: Upload Docs
161161
uses: actions/[email protected]
162162
with:
163163
name: react-mui-audit-log-viewer-docs
164164
path: ./packages/react-mui-audit-log-viewer/docs/
165165

166+
- name: Test
167+
run: yarn test
168+
169+
- name: Storybook
170+
run: yarn build-storybook
171+
166172
build-react-mui-authn:
167173
runs-on: ubuntu-latest
168174
defaults:
@@ -200,6 +206,34 @@ jobs:
200206
name: react-mui-authn-package
201207
path: ./packages/react-mui-authn/pangeacyber-react-mui-authn-v*.tgz
202208

209+
build-react-mui-branding:
210+
runs-on: ubuntu-24.04
211+
defaults:
212+
run:
213+
working-directory: ./packages/react-mui-branding
214+
steps:
215+
- name: Checkout code
216+
uses: actions/[email protected]
217+
218+
- name: Enable Corepack
219+
run: corepack enable
220+
221+
- name: Setup Node.js
222+
uses: actions/[email protected]
223+
with:
224+
node-version: 20
225+
cache: yarn
226+
cache-dependency-path: ./packages/react-mui-branding/yarn.lock
227+
228+
- name: Install dependencies
229+
run: yarn install
230+
231+
- name: Build
232+
run: yarn build
233+
234+
- name: Storybook
235+
run: yarn build-storybook
236+
203237
build-react-mui-shared:
204238
runs-on: ubuntu-latest
205239
defaults:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.yarn
22
dist
33
node_modules
4+
storybook-static
45
/yarn-error.log
56
*.code-workspace
67
*.DS_Store

packages/react-mui-audit-log-viewer/.gitlab-ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66
- corepack enable
77
- cd packages/react-mui-audit-log-viewer
88
- yarn install --immutable
9-
cache:
10-
- key:
11-
files:
12-
- yarn.lock
13-
paths:
14-
- node_modules
159

1610
publish_react_mui_audit_log_viewer:
1711
extends: .react_mui_audit_log_viewer_base

packages/react-mui-audit-log-viewer/.npmignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
node_modules/
22
/yarn-error.log
3-
node_modules/
4-
/yarn-error.log
5-
.babelrc
63
.gitlab-ci.yml
74
jest.config.js
85
package.json
9-
rollup.config.js
106
tsconfig.json
117
vite.config.mts
128
javascript.code-workspace

packages/react-mui-audit-log-viewer/package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/index.d.ts",
8-
"repository": "https://github.com/pangeacyber/pangea-javascript.git",
8+
"repository": "github:pangeacyber/pangea-javascript",
99
"author": "Pangea (https://pangea.cloud)",
1010
"license": "MIT",
1111
"publishConfig": {
1212
"access": "public"
1313
},
14+
"files": [
15+
"dist"
16+
],
1417
"scripts": {
1518
"storybook": "storybook dev -p 6006",
1619
"build-storybook": "storybook build",
@@ -27,8 +30,7 @@
2730
"@mui/material": "^6.1.6",
2831
"@mui/types": "^7.2.19",
2932
"@pangeacyber/react-mui-branding": "1.0.0",
30-
"@rollup/plugin-babel": "^6.0.4",
31-
"@rollup/plugin-commonjs": "^26.0.3",
33+
"@rollup/plugin-commonjs": "28.0.1",
3234
"@rollup/plugin-json": "^6.1.0",
3335
"@rollup/plugin-node-resolve": "^15.3.0",
3436
"@rollup/plugin-replace": "^6.0.1",
@@ -53,8 +55,8 @@
5355
"postcss": "^8.4.47",
5456
"react": "17.0.2",
5557
"react-dom": "17.0.2",
56-
"rollup": "^2.79.2",
57-
"rollup-plugin-dts": "^4.2.3",
58+
"rollup": "4.24.4",
59+
"rollup-plugin-dts": "6.1.1",
5860
"rollup-plugin-peer-deps-external": "^2.2.4",
5961
"rollup-plugin-polyfill-node": "^0.13.0",
6062
"rollup-plugin-postcss": "^4.0.2",

packages/react-mui-audit-log-viewer/rollup.config.js renamed to packages/react-mui-audit-log-viewer/rollup.config.mjs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
// /rollup.config.js
1+
import commonjs from "@rollup/plugin-commonjs";
2+
import json from "@rollup/plugin-json";
23
import resolve from "@rollup/plugin-node-resolve";
3-
import external from "rollup-plugin-peer-deps-external";
4+
import replace from "@rollup/plugin-replace";
45
import terser from "@rollup/plugin-terser";
5-
import postcss from "rollup-plugin-postcss";
66
import typescript from "@rollup/plugin-typescript";
7-
import commonjs from "@rollup/plugin-commonjs";
8-
import replace from "@rollup/plugin-replace";
97
import dts from "rollup-plugin-dts";
10-
import json from "@rollup/plugin-json";
8+
import external from "rollup-plugin-peer-deps-external";
119
import nodePolyfills from "rollup-plugin-polyfill-node";
10+
import postcss from "rollup-plugin-postcss";
1211

13-
import pkg from "./package.json";
12+
import pkg from "./package.json" assert { type: "json" };
1413

1514
export default [
1615
{

0 commit comments

Comments
 (0)