minidev 1.0.3 → 1.0.7

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 (37) hide show
  1. package/assets/web-sim/devtool/index.html +18 -0
  2. package/assets/web-sim/devtool/main.js +2 -0
  3. package/assets/web-sim/devtool/main.js.LICENSE.txt +47 -0
  4. package/assets/web-sim/index.html +17 -0
  5. package/assets/web-sim/main.js +2 -0
  6. package/assets/web-sim/main.js.LICENSE.txt +82 -0
  7. package/assets/web-sim/simulator/index.html +18 -0
  8. package/assets/web-sim/simulator/main.js +2 -0
  9. package/assets/web-sim/simulator/main.js.LICENSE.txt +67 -0
  10. package/docs/guide/base/cli.md +37 -0
  11. package/docs/guide/base/node-js-api.md +31 -0
  12. package/docs/guide/base/quick-start.md +135 -0
  13. package/docs/guide/commands/build.md +103 -0
  14. package/docs/guide/commands/config.md +79 -0
  15. package/docs/guide/commands/dev-daemon-commands/ide.md +70 -0
  16. package/docs/guide/commands/dev-daemon-commands/preview.md +54 -0
  17. package/docs/guide/commands/dev-daemon-commands/remote-debug.md +63 -0
  18. package/docs/guide/commands/dev-daemon-commands/web.md +110 -0
  19. package/docs/guide/commands/dev.md +150 -0
  20. package/docs/guide/commands/download-assets.md +48 -0
  21. package/docs/guide/commands/ide.md +117 -0
  22. package/docs/guide/commands/index.md +19 -0
  23. package/docs/guide/commands/login.md +53 -0
  24. package/docs/guide/commands/preview.md +121 -0
  25. package/docs/guide/commands/remote-debug.md +137 -0
  26. package/docs/guide/commands/upload.md +95 -0
  27. package/docs/guide/experiences/auth.md +65 -0
  28. package/docs/guide/experiences/client-type.md +16 -0
  29. package/docs/guide/experiences/config.md +127 -0
  30. package/docs/guide/experiences/sandbox.md +12 -0
  31. package/docs/guide/experiences/scene.md +33 -0
  32. package/index.d.ts +65 -7
  33. package/lib/index.js +1 -1
  34. package/lib/index.js.LICENSE.txt +195 -0
  35. package/lib/worker.js +2 -0
  36. package/lib/worker.js.LICENSE.txt +14 -0
  37. package/package.json +8 -6
@@ -0,0 +1,82 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2017 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /*!
14
+ * Determine if an object is a Buffer
15
+ *
16
+ * @author Feross Aboukhadijeh <https://feross.org>
17
+ * @license MIT
18
+ */
19
+
20
+ /*!
21
+ * mime-db
22
+ * Copyright(c) 2014 Jonathan Ong
23
+ * MIT Licensed
24
+ */
25
+
26
+ /*!
27
+ * mime-types
28
+ * Copyright(c) 2014 Jonathan Ong
29
+ * Copyright(c) 2015 Douglas Christopher Wilson
30
+ * MIT Licensed
31
+ */
32
+
33
+ /*! *****************************************************************************
34
+ Copyright (c) Microsoft Corporation.
35
+
36
+ Permission to use, copy, modify, and/or distribute this software for any
37
+ purpose with or without fee is hereby granted.
38
+
39
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
40
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
41
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
42
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
43
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
44
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
45
+ PERFORMANCE OF THIS SOFTWARE.
46
+ ***************************************************************************** */
47
+
48
+ /** @license React v0.19.1
49
+ * scheduler.production.min.js
50
+ *
51
+ * Copyright (c) Facebook, Inc. and its affiliates.
52
+ *
53
+ * This source code is licensed under the MIT license found in the
54
+ * LICENSE file in the root directory of this source tree.
55
+ */
56
+
57
+ /** @license React v16.13.1
58
+ * react-is.production.min.js
59
+ *
60
+ * Copyright (c) Facebook, Inc. and its affiliates.
61
+ *
62
+ * This source code is licensed under the MIT license found in the
63
+ * LICENSE file in the root directory of this source tree.
64
+ */
65
+
66
+ /** @license React v16.14.0
67
+ * react-dom.production.min.js
68
+ *
69
+ * Copyright (c) Facebook, Inc. and its affiliates.
70
+ *
71
+ * This source code is licensed under the MIT license found in the
72
+ * LICENSE file in the root directory of this source tree.
73
+ */
74
+
75
+ /** @license React v16.14.0
76
+ * react.production.min.js
77
+ *
78
+ * Copyright (c) Facebook, Inc. and its affiliates.
79
+ *
80
+ * This source code is licensed under the MIT license found in the
81
+ * LICENSE file in the root directory of this source tree.
82
+ */
@@ -0,0 +1,18 @@
1
+ <html><head><style>#root {
2
+ position: absolute;
3
+ top:0;
4
+ left: 0;
5
+ height: 100%;
6
+ width: 100%;
7
+ }
8
+ html {
9
+ height: 100%;
10
+ overflow: hidden;
11
+ position: relative;
12
+ }
13
+ body {
14
+ position: relative;
15
+ height: 100%;
16
+ overflow: hidden;
17
+ margin:0;
18
+ }</style><script defer="defer" src="main.js"></script></head><body><div id="root"></div></body></html>