@valten/regulex-visualizer 1.0.10 → 1.0.11
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### Install for Node.js
|
|
4
4
|
```
|
|
5
|
-
npm install regulex-visualizer
|
|
5
|
+
npm install @valten/regulex-visualizer
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
|
|
@@ -14,8 +14,8 @@ npm install regulex-visualizer
|
|
|
14
14
|
</template>
|
|
15
15
|
|
|
16
16
|
<script setup>
|
|
17
|
-
import { RegulexVisualizer } from 'regulex-visualizer';
|
|
18
|
-
import 'regulex-visualizer/dist/index.css'
|
|
17
|
+
import { RegulexVisualizer } from '@valten/regulex-visualizer';
|
|
18
|
+
import '@valten/regulex-visualizer/dist/index.css'
|
|
19
19
|
import { ref } from 'vue';
|
|
20
20
|
|
|
21
21
|
const pattern = ref('^(a|b)*?$');
|