@etsoo/notificationbase 1.1.43 → 1.1.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,13 +22,13 @@ jobs:
22
22
  steps:
23
23
  # https://github.com/actions/checkout, This action checks-out your repository under $GITHUB_WORKSPACE
24
24
  # so your workflow can access it.
25
- - uses: actions/checkout@v2
25
+ - uses: actions/checkout@v4
26
26
 
27
27
  # Set up your GitHub Actions workflow with a specific version of node.js
28
28
  # Setup .npmrc file to publish to npm
29
- - uses: actions/setup-node@v1
29
+ - uses: actions/setup-node@v4
30
30
  with:
31
- node-version: '18.x'
31
+ node-version: '20.x'
32
32
  registry-url: 'https://registry.npmjs.org'
33
33
 
34
34
  # Named after Continuous Integration, installs dependencies directly from package-lock.json
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2004-2024 ETSOO® (亿速思维 ®), https://www.etsoo.com
3
+ Copyright (c) 2004-2024 ETSOO ® (亿速思维 ®), https://etsoo.com, https://etsoo.nz
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/notificationbase",
3
- "version": "1.1.43",
3
+ "version": "1.1.45",
4
4
  "description": "TypeScript notification component for extending with all features described and partially implemented",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -52,18 +52,18 @@
52
52
  },
53
53
  "homepage": "https://github.com/ETSOO/NotificationBase#readme",
54
54
  "dependencies": {
55
- "@etsoo/shared": "^1.2.42"
55
+ "@etsoo/shared": "^1.2.44"
56
56
  },
57
57
  "devDependencies": {
58
- "@babel/core": "^7.24.7",
58
+ "@babel/core": "^7.25.2",
59
59
  "@babel/plugin-transform-runtime": "^7.24.7",
60
- "@babel/preset-env": "^7.24.7",
61
- "@babel/runtime-corejs3": "^7.24.7",
60
+ "@babel/preset-env": "^7.25.3",
61
+ "@babel/runtime-corejs3": "^7.25.0",
62
62
  "@types/jest": "^29.5.12",
63
63
  "babel-jest": "^29.7.0",
64
64
  "jest": "^29.7.0",
65
65
  "jest-environment-jsdom": "^29.7.0",
66
- "ts-jest": "^29.1.4",
67
- "typescript": "^5.4.5"
66
+ "ts-jest": "^29.2.4",
67
+ "typescript": "^5.5.4"
68
68
  }
69
69
  }