Skip to content

Commit 2c7a9d0

Browse files
authored
Merge pull request #68 from zeusongit/DYN-8097
DYN-8097: Update copyright year for Dynamo to 2025
2 parents ff2996f + 8475ab4 commit 2c7a9d0

File tree

9 files changed

+18
-10
lines changed

9 files changed

+18
-10
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- name: Use Node.js ${{ matrix.node-version }}
2323
uses: actions/setup-node@v3
24+
env:
25+
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
2426
with:
2527
node-version: ${{ matrix.node-version }}
2628
cache: "npm"
2729
- run: npm ci --force
2830
- run: npm run build --if-present
29-
- run: npm test
31+
- run: npm run test
32+

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 DynamoDS
3+
Copyright (c) 2025 DynamoDS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

jest-puppeteer.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ module.exports = {
77
launch: {
88
headless: true,
99
timeout: 30000,
10+
args: [
11+
"--no-sandbox",
12+
"--disable-setuid-sandbox",
13+
"--disable-dev-shm-usage"
14+
]
1015
},
1116
exitOnPageError: false
1217
};

license_output/about-box_direct.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div>
22
<p>
33
<strong>
4-
NotificationCenter &copy; 2024 Autodesk, Inc. All rights reserved.
4+
NotificationCenter &copy; 2025 Autodesk, Inc. All rights reserved.
55
</strong>
66
</p>
77
<div>

license_output/about-box_transitive.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div>
22
<p>
33
<strong>
4-
NotificationCenter &copy; 2024 Autodesk, Inc. All rights reserved.
4+
NotificationCenter &copy; 2025 Autodesk, Inc. All rights reserved.
55
</strong>
66
</p>
77
<div>

license_output/paos_direct.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed
2-
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false
2+
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false
33
"",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false
44
"",react,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false

license_output/paos_transitive.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
publisher,name,version,copyright,dateAdded,estimatedReleaseDate,license,distributed
2-
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2024 DynamoDS","","",MIT,false
2+
"Autodesk Inc.",@dynamods/notifications-center,"0.0.31","Copyright (c) 2025 DynamoDS","","",MIT,false
33
"Simon Lydell",js-tokens,"4.0.0","Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell","","",MIT,false
44
"Andres Suarez",loose-envify,"1.4.0","Copyright (c) 2015 Andres Suarez <[email protected]>","","",MIT,false
55
"",react-dom,"18.2.0","Copyright (c) Facebook, Inc. and its affiliates.","","",MIT,false

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dynamods/notifications-center",
3-
"version": "0.0.31",
3+
"version": "0.0.32",
44
"description": "Notification center maintained by Dynamo Team@Autodesk",
55
"author": "Autodesk Inc.",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"lint:fix": "eslint src/ tests/ --fix",
1919
"test:unit": "jest tests/unit",
2020
"test:e2e": "jest tests/e2e --coverage=false",
21-
"test": "jest",
21+
"test": "jest --no-sandbox",
2222
"start:dev": "webpack serve --config webpack.config.js --env dev",
2323
"start:staging": "webpack serve --config webpack.config.js --env staging",
2424
"start": "webpack serve --config webpack.config.js --env prod",

0 commit comments

Comments
 (0)