vite-plugin-css-position 2.0.8 → 2.0.9

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +12 -1
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  [![npm version](https://img.shields.io/npm/v/vite-plugin-css-position)](https://www.npmjs.com/package/vite-plugin-css-position)
2
+ [![npm version](https://img.shields.io/npm/dm/vite-plugin-css-position)](https://www.npmjs.com/package/vite-plugin-css-position)
2
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3
4
 
5
+
6
+
7
+
4
8
  A Vite plugin that allows you to control where CSS stylesheets are injected in your React or Vue application. Perfect for scenarios where you need precise control over style placement, especially when working with Shadow DOM.
5
9
 
6
10
  ## ✨ Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-css-position",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Custom position of vite styles within a vite react app",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -46,6 +46,17 @@
46
46
  "react-dom": "^19.0.0",
47
47
  "vue": "^3.5.22"
48
48
  },
49
+ "peerDependenciesMeta": {
50
+ "react": {
51
+ "optional": true
52
+ },
53
+ "react-dom": {
54
+ "optional": true
55
+ },
56
+ "vue": {
57
+ "optional": true
58
+ }
59
+ },
49
60
  "devDependencies": {
50
61
  "@testing-library/jest-dom": "^6.9.1",
51
62
  "@testing-library/react": "^16.3.0",