@nx/web 20.3.0 → 20.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2017-2024 Narwhal Technologies Inc.
3
+ Copyright (c) 2017-2025 Narwhal Technologies Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/web",
3
- "version": "20.3.0",
3
+ "version": "20.3.2",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Playwright, Cypress, and Storybook.\n\n- Scaffolding for creating buildable libraries that can be published to npm.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -35,8 +35,8 @@
35
35
  "http-server": "^14.1.0",
36
36
  "picocolors": "^1.1.0",
37
37
  "tslib": "^2.3.0",
38
- "@nx/devkit": "20.3.0",
39
- "@nx/js": "20.3.0"
38
+ "@nx/devkit": "20.3.2",
39
+ "@nx/js": "20.3.2"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
@@ -74,7 +74,14 @@
74
74
  "description": "Path where the build artifacts are located. If not provided then it will be infered from the buildTarget executor options as outputPath"
75
75
  },
76
76
  "cors": {
77
- "type": "boolean",
77
+ "oneOf": [
78
+ {
79
+ "type": "boolean"
80
+ },
81
+ {
82
+ "type": "string"
83
+ }
84
+ ],
78
85
  "description": "Enable CORS",
79
86
  "default": true
80
87
  },