@ops-ai/feature-flags-toggly 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ In agile settings the feature flag is used in production, to switch on the featu
13
13
  Simply embed our latest bundle from the following CDN.
14
14
 
15
15
  ```html
16
- <script src="..."></script>
16
+ <script src="https://cdn.jsdelivr.net/npm/@ops-ai/feature-flags-toggly@1.0.2/dist/feature-flags-toggly.bundle.js"></script>
17
17
  ```
18
18
 
19
19
  Alternatively, you can use NPM to manually build the bundled *.js file.
@@ -23,7 +23,7 @@ $ npm install @ops-ai/feature-flags-toggly
23
23
  $ cd node_modules/@ops-ai/feature-flags-toggly && npm run build
24
24
  ```
25
25
 
26
- And then grab the generated bundled file from the */dist directory.
26
+ And then grab the generated bundled file from the ./dist directory.
27
27
 
28
28
  ## Basic Usage (with Toggly.io)
29
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ops-ai/feature-flags-toggly",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Provides feature flags support for Javascript applications allowing you to enable and disable features easily. Can be used with or without Toggly.io.",
5
5
  "main": "index.js",
6
6
  "scripts": {