Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ jobs:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci --force
- run: npm run build --if-present
- run: npm test
- run: npm run test

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 DynamoDS
Copyright (c) 2025 DynamoDS

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 5 additions & 0 deletions jest-puppeteer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ module.exports = {
launch: {
headless: true,
timeout: 30000,
args: [
"--no-sandbox",
"--disable-setuid-sandbox",
"--disable-dev-shm-usage"
]
},
exitOnPageError: false
};
2 changes: 1 addition & 1 deletion license_output/about-box_direct.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<p>
<strong>
NotificationCenter &copy; 2024 Autodesk, Inc. All rights reserved.
NotificationCenter &copy; 2025 Autodesk, Inc. All rights reserved.
</strong>
</p>
<div>
Expand Down
2 changes: 1 addition & 1 deletion license_output/about-box_transitive.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<p>
<strong>
NotificationCenter &copy; 2024 Autodesk, Inc. All rights reserved.
NotificationCenter &copy; 2025 Autodesk, Inc. All rights reserved.
</strong>
</p>
<div>
Expand Down
2 changes: 1 addition & 1 deletion license_output/paos_direct.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false
"",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false
"",react,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false
2 changes: 1 addition & 1 deletion license_output/paos_transitive.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false
"Simon Lydell",js-tokens,"4.0.0","Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell","","",MIT,false
"Andres Suarez",loose-envify,"1.4.0","Copyright (c) 2015 Andres Suarez <[email protected]>","","",MIT,false
"",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dynamods/notifications-center",
"version": "0.0.31",
"version": "0.0.32",
"description": "Notification center maintained by Dynamo Team@Autodesk",
"author": "Autodesk Inc.",
"license": "MIT",
Expand All @@ -18,7 +18,7 @@
"lint:fix": "eslint src/ tests/ --fix",
"test:unit": "jest tests/unit",
"test:e2e": "jest tests/e2e --coverage=false",
"test": "jest",
"test": "jest --no-sandbox",
"start:dev": "webpack serve --config webpack.config.js --env dev",
"start:staging": "webpack serve --config webpack.config.js --env staging",
"start": "webpack serve --config webpack.config.js --env prod",
Expand Down