configcat-vue 2.3.0 → 2.4.1
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 +5 -15
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -4,15 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
## Introduction
|
|
6
6
|
|
|
7
|
-
Welcome to the
|
|
7
|
+
Welcome to the Vue.js SDK for ConfigCat Feature Flags. This community-maintained SDK was designed to streamline your feature development workflow. Whether you're a seasoned developer or just starting, **configcat-vue offers a comprehensive way to leverage all the benefits of using ConfigCat feature flags in your Vue.js applications**. This package includes all the features provided by other [ConfigCat SDKs](https://configcat.com/docs/sdk-reference/overview/) and is based on [configcat-js](https://www.npmjs.com/package/configcat-js).
|
|
8
8
|
|
|
9
|
-
## What you can do with this
|
|
9
|
+
## What you can do with this SDK
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
- Easily toggle features in your Vue.js app on and off, even after it is deployed.
|
|
11
|
+
- Easily toggle features in your Vue.js app on and off, even after deployment.
|
|
14
12
|
- Experiment with new features and quickly roll them back with the click of a button if things go wrong without taking your app offline.
|
|
15
|
-
- Release specific features in your Vue.js app to targeted users based on demographics such as country, email, or
|
|
13
|
+
- Release specific features in your Vue.js app to targeted users based on demographics such as country, email, or custom attributes like eye color.
|
|
16
14
|
- Gradually release new features to a specific percentage of users using the percentage rollout feature.
|
|
17
15
|
- Conduct A/B testing of your Vue.js app's features effortlessly.
|
|
18
16
|
|
|
@@ -20,14 +18,6 @@ Here's a quick overview of what you can do with this package:
|
|
|
20
18
|
|
|
21
19
|
[Read the documentation on ConfigCat](https://configcat.com/docs/sdk-reference/community/vue/)
|
|
22
20
|
|
|
23
|
-
## With you in mind
|
|
24
|
-
|
|
25
|
-
The documentation provides specific examples of the mentioned capabilities and provides links to the relevant sections in ConfigCat's JavaScript SDK documentation. The examples and links will help you better understand how to utilize the features of the ConfigCat-Vue package effectively.
|
|
26
|
-
|
|
27
|
-
By referring to ConfigCat's JavaScript SDK documentation at <https://configcat.com/docs/sdk-reference/js/>, you can access detailed information and further explore the extensive range of options and functionalities offered by the ConfigCat ecosystem.
|
|
28
|
-
|
|
29
|
-
Please note that the provided link is subject to ConfigCat's website and may change over time. Make sure to consult their official documentation for the most up-to-date information.
|
|
30
|
-
|
|
31
21
|
## Want to contribute?
|
|
32
22
|
|
|
33
|
-
Whether
|
|
23
|
+
Whether you're good at coding, writing documentation, testing, or bug reporting, feel free to contribute. **You can explore the configcat-vue GitHub repository [here](https://github.com/codedbychavez/configcat-vue)**.
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
|
-
"version": "2.
|
|
22
|
+
"version": "2.4.1",
|
|
23
23
|
"keywords": [
|
|
24
24
|
"configcat",
|
|
25
25
|
"ConfigCat",
|
|
@@ -47,20 +47,20 @@
|
|
|
47
47
|
"test": "vitest"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"vue": "^3.
|
|
50
|
+
"vue": "^3.4.38"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@types/node": "^
|
|
54
|
-
"@vitejs/plugin-vue": "^
|
|
55
|
-
"@vue/test-utils": "^2.4.
|
|
56
|
-
"happy-dom": "^
|
|
57
|
-
"typescript": "^5.
|
|
58
|
-
"vite": "^
|
|
59
|
-
"vite-plugin-dts": "^
|
|
60
|
-
"vitest": "^
|
|
61
|
-
"vue-tsc": "^
|
|
53
|
+
"@types/node": "^22.4.1",
|
|
54
|
+
"@vitejs/plugin-vue": "^5.1.2",
|
|
55
|
+
"@vue/test-utils": "^2.4.6",
|
|
56
|
+
"happy-dom": "^14.12.3",
|
|
57
|
+
"typescript": "^5.5.4",
|
|
58
|
+
"vite": "^5.4.1",
|
|
59
|
+
"vite-plugin-dts": "^4.0.3",
|
|
60
|
+
"vitest": "^2.0.5",
|
|
61
|
+
"vue-tsc": "^2.0.29"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"configcat-common": "9.3.
|
|
64
|
+
"configcat-common": "9.3.1"
|
|
65
65
|
}
|
|
66
66
|
}
|