@lynx-js/qrcode-rsbuild-plugin 0.3.4 → 0.3.5
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/113.js +20 -0
- package/dist/517.js +1456 -0
- package/dist/640.js +939 -0
- package/dist/index.js +264 -0
- package/dist/shortcuts.js +221 -0
- package/dist/showQRCode.d.ts +1 -0
- package/package.json +17 -17
- package/lib/generateDevUrls.js +0 -28
- package/lib/index.js +0 -71
- package/lib/shortcuts.js +0 -102
- package/lib/showQRCode.d.ts +0 -1
- package/lib/showQRCode.js +0 -17
- /package/{lib → dist}/generateDevUrls.d.ts +0 -0
- /package/{lib → dist}/index.d.ts +0 -0
- /package/{lib → dist}/shortcuts.d.ts +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -86,7 +86,7 @@ Visit [Lynx Website](https://lynxjs.org/api/rspeedy/qrcode-rsbuild-plugin.plugin
|
|
|
86
86
|
|
|
87
87
|
## Contributing
|
|
88
88
|
|
|
89
|
-
Contributions to Rspeedy are welcome and highly appreciated. However, before you jump right into it, we would like you to review our [Contribution Guidelines](/
|
|
89
|
+
Contributions to Rspeedy are welcome and highly appreciated. However, before you jump right into it, we would like you to review our [Contribution Guidelines](/CONTRIBUTING.md) to make sure you have a smooth experience contributing to this project.
|
|
90
90
|
|
|
91
91
|
## License
|
|
92
92
|
|
package/dist/113.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const __webpack_ids__ = [
|
|
2
|
+
'113'
|
|
3
|
+
];
|
|
4
|
+
export const __webpack_modules__ = {
|
|
5
|
+
"./src/showQRCode.ts": function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6
|
+
__webpack_require__.r(__webpack_exports__);
|
|
7
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
8
|
+
default: ()=>showQRCode
|
|
9
|
+
});
|
|
10
|
+
var _clack_prompts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("../../../node_modules/.pnpm/@clack+prompts@0.10.0/node_modules/@clack/prompts/dist/index.mjs");
|
|
11
|
+
var picocolors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
|
|
12
|
+
var picocolors__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(picocolors__WEBPACK_IMPORTED_MODULE_1__);
|
|
13
|
+
var uqr__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("../../../node_modules/.pnpm/uqr@0.1.2/node_modules/uqr/dist/index.mjs");
|
|
14
|
+
function showQRCode(url) {
|
|
15
|
+
_clack_prompts__WEBPACK_IMPORTED_MODULE_0__.log.info(picocolors__WEBPACK_IMPORTED_MODULE_1___default().green('Scan with Lynx'));
|
|
16
|
+
_clack_prompts__WEBPACK_IMPORTED_MODULE_0__.log.success((0, uqr__WEBPACK_IMPORTED_MODULE_2__.LL)(url));
|
|
17
|
+
_clack_prompts__WEBPACK_IMPORTED_MODULE_0__.log.success(url);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
};
|