@hulkapps/app-manager-vue 3.1.2 → 3.1.3
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/README.md
CHANGED
|
@@ -101,10 +101,22 @@ handleBannerClose(payload) {
|
|
|
101
101
|
You can extract all translation keys used in this package by running:
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
|
|
104
|
+
cd node_modules/@hulkapps/app-manager-vue
|
|
105
|
+
```
|
|
106
|
+
```bash
|
|
107
|
+
node extract-translation-keys.js
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
If your package is located elsewhere, replace the path with the actual location, for example:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
cd path-to-package
|
|
114
|
+
```
|
|
115
|
+
```bash
|
|
116
|
+
node extract-translation-keys.js
|
|
105
117
|
```
|
|
106
118
|
|
|
107
|
-
This
|
|
119
|
+
This will scan all `.js` and `.vue` files within the `src` directory of this package for usages of `translateMe('...')` and output a JSON array of unique translation keys to the console.
|
|
108
120
|
|
|
109
121
|
## License
|
|
110
122
|
|