hyperclayjs 1.0.0 → 1.0.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/hyperclay.js +17 -1
- package/package.json +1 -1
package/hyperclay.js
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* HyperclayJS - Self-detecting module loader
|
|
3
3
|
* Automatically loads requested features with dependency resolution
|
|
4
4
|
*
|
|
5
|
+
* USAGE:
|
|
6
|
+
*
|
|
7
|
+
* <!-- Load with a preset -->
|
|
8
|
+
* <script src="https://cdn.jsdelivr.net/npm/hyperclayjs@1/hyperclay.js?preset=minimal" type="module"></script>
|
|
9
|
+
* <script src="https://cdn.jsdelivr.net/npm/hyperclayjs@1/hyperclay.js?preset=standard" type="module"></script>
|
|
10
|
+
* <script src="https://cdn.jsdelivr.net/npm/hyperclayjs@1/hyperclay.js?preset=everything" type="module"></script>
|
|
11
|
+
*
|
|
12
|
+
* <!-- Load specific features -->
|
|
13
|
+
* <script src="https://cdn.jsdelivr.net/npm/hyperclayjs@1/hyperclay.js?features=save,admin,toast" type="module"></script>
|
|
14
|
+
*
|
|
15
|
+
* <!-- Combine presets and features -->
|
|
16
|
+
* <script src="https://cdn.jsdelivr.net/npm/hyperclayjs@1/hyperclay.js?preset=minimal&features=modals,ajax" type="module"></script>
|
|
17
|
+
*
|
|
18
|
+
* Available presets: minimal, standard, everything
|
|
19
|
+
* See https://github.com/hyperclay/hyperclayjs for full list of features
|
|
20
|
+
*
|
|
5
21
|
* AUTO-GENERATED FILE - Do not edit directly
|
|
6
22
|
* Generated from module-dependency-graph.json
|
|
7
23
|
*/
|