@localnerve/web-component-build 1.6.0 → 1.6.2
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.
- package/LICENSE.md +1 -1
- package/index.js +1 -1
- package/lib/build.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +7 -6
package/LICENSE.md
CHANGED
package/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Assemble and minify a web component from its parts.
|
|
4
4
|
* Expose parts back to the calling build process.
|
|
5
5
|
*
|
|
6
|
-
* Copyright (c) 2023 -
|
|
6
|
+
* Copyright (c) 2023 - 2025 Alex Grant (@localnerve), LocalNerve LLC
|
|
7
7
|
* Copyrights licensed under the BSD License. See the accompanying LICENSE file for terms.
|
|
8
8
|
*/
|
|
9
9
|
export {build, build as default} from './lib/index.js';
|
package/lib/build.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Web Component Build
|
|
3
3
|
* Builds the component parts
|
|
4
4
|
*
|
|
5
|
-
* Copyright (c) 2023 -
|
|
5
|
+
* Copyright (c) 2023 - 2025 Alex Grant (@localnerve), LocalNerve LLC
|
|
6
6
|
* Copyrights licensed under the BSD License. See the accompanying LICENSE file for terms.
|
|
7
7
|
*/
|
|
8
8
|
import * as path from 'node:path';
|
package/lib/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Assemble and minify a web component from its parts.
|
|
4
4
|
* Expose parts back to the calling build process.
|
|
5
5
|
*
|
|
6
|
-
* Copyright (c) 2023 -
|
|
6
|
+
* Copyright (c) 2023 - 2025 Alex Grant (@localnerve), LocalNerve LLC
|
|
7
7
|
* Copyrights licensed under the BSD License. See the accompanying LICENSE file for terms.
|
|
8
8
|
*/
|
|
9
9
|
import * as fs from 'node:fs/promises';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@localnerve/web-component-build",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "A library to help build web components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -53,15 +53,16 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@babel/preset-env": "^7.26.0",
|
|
56
|
-
"eslint": "^9.
|
|
57
|
-
"@eslint/js": "^9.
|
|
58
|
-
"eslint-plugin-jest": "^28.
|
|
59
|
-
"globals": "^15.
|
|
56
|
+
"eslint": "^9.18.0",
|
|
57
|
+
"@eslint/js": "^9.18.0",
|
|
58
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
59
|
+
"globals": "^15.14.0",
|
|
60
60
|
"jest": "^29.7.0",
|
|
61
61
|
"tempy": "^3.1.0"
|
|
62
62
|
},
|
|
63
63
|
"overrides": {
|
|
64
|
-
"clean-css": "$clean-css"
|
|
64
|
+
"clean-css": "$clean-css",
|
|
65
|
+
"undici": "^6.21.1"
|
|
65
66
|
},
|
|
66
67
|
"engines": {
|
|
67
68
|
"node": ">=18.17"
|