nexusframework 0.3.0-beta.72 → 0.3.0-beta.74

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 (64) hide show
  1. package/LICENSE.md +55 -55
  2. package/README.md +12 -12
  3. package/about/index.json +5 -5
  4. package/about/index.nhp +4 -4
  5. package/icon.png +0 -0
  6. package/index.d.ts +12 -15
  7. package/index.js +94 -81
  8. package/index.js.map +1 -1
  9. package/index.ts +101 -89
  10. package/indexOfSkeleton.nhp +133 -133
  11. package/legacySkeleton.nhp +22 -22
  12. package/loader/overlay.css +1 -1
  13. package/loader/overlay.html +25 -25
  14. package/loader/overlay.scss +152 -152
  15. package/package.json +102 -89
  16. package/scripts/es5/compat.js +101 -0
  17. package/scripts/es5/compat.js.map +1 -0
  18. package/scripts/es5/compat.min.js +2 -0
  19. package/scripts/es5/compat.min.js.map +1 -0
  20. package/scripts/es5/loader.js +0 -0
  21. package/scripts/es5/loader.js.map +0 -0
  22. package/scripts/es5/loader.min.js +1 -1
  23. package/scripts/es5/loader.min.js.map +0 -0
  24. package/scripts/es5/nexusframeworkclient.js +1092 -1103
  25. package/scripts/es5/nexusframeworkclient.js.map +1 -1
  26. package/scripts/es5/nexusframeworkclient.min.js +1 -1
  27. package/scripts/es5/nexusframeworkclient.min.js.map +1 -1
  28. package/scripts/es6/compat.js +65 -0
  29. package/scripts/es6/compat.js.map +1 -0
  30. package/scripts/es6/compat.min.js +2 -0
  31. package/scripts/es6/compat.min.js.map +1 -0
  32. package/scripts/es6/loader.js +0 -0
  33. package/scripts/es6/loader.js.map +0 -0
  34. package/scripts/es6/loader.min.js +1 -1
  35. package/scripts/es6/loader.min.js.map +0 -0
  36. package/scripts/es6/nexusframeworkclient.js +1026 -1049
  37. package/scripts/es6/nexusframeworkclient.js.map +1 -1
  38. package/scripts/es6/nexusframeworkclient.min.js +1 -1
  39. package/scripts/es6/nexusframeworkclient.min.js.map +1 -1
  40. package/scripts/index.d.ts +259 -251
  41. package/scripts/src/compat.ts +62 -0
  42. package/scripts/src/loader.ts +385 -385
  43. package/scripts/src/nexusframeworkclient.ts +1163 -1185
  44. package/scripts/tsconfig.json +11 -11
  45. package/src/cli.d.ts +1 -0
  46. package/src/cli.js +102 -102
  47. package/src/cli.js.map +1 -1
  48. package/src/cli.ts +101 -101
  49. package/src/compileScripts.d.ts +2 -2
  50. package/src/compileScripts.js +145 -145
  51. package/src/compileScripts.js.map +1 -1
  52. package/src/compileScripts.ts +153 -153
  53. package/src/nexusframework.d.ts +177 -168
  54. package/src/nexusframework.js +3578 -3422
  55. package/src/nexusframework.js.map +1 -1
  56. package/src/nexusframework.ts +3631 -3473
  57. package/templates/basic/package.json +3 -3
  58. package/templates/basic/www/skeleton.nhp +1 -1
  59. package/templates/bootstrap/package.json +2 -2
  60. package/templates/bootstrap/www/skeleton.nhp +1 -1
  61. package/templates/bootstrap-material-design/package.json +2 -2
  62. package/templates/bootstrap-material-design/www/skeleton.nhp +1 -1
  63. package/tsconfig.json +25 -22
  64. package/types.d.ts +612 -564
@@ -1,3 +1,3 @@
1
- {
2
- "description": "A very basic nexusframework template with no styles or scripts, just the bare structure"
3
- }
1
+ {
2
+ "description": "A very basic nexusframework template with no styles or scripts, just the bare structure"
3
+ }
@@ -1 +1 @@
1
-
1
+
@@ -1,3 +1,3 @@
1
- {
2
- "description": "A bootstrap v3 based nexusframework template"
1
+ {
2
+ "description": "A bootstrap v3 based nexusframework template"
3
3
  }
@@ -1 +1 @@
1
-
1
+
@@ -1,3 +1,3 @@
1
- {
2
- "description": "A bootstrap-material-design v3 based nexusframework template"
1
+ {
2
+ "description": "A bootstrap-material-design v3 based nexusframework template"
3
3
  }
package/tsconfig.json CHANGED
@@ -1,23 +1,26 @@
1
- {
2
- "compileOnSave": true,
3
- "compilerOptions": {
4
- "target": "ES6",
5
- "declaration": true,
6
- "module": "commonjs",
7
- "skipLibCheck": true,
8
- "sourceMap": true
9
- },
10
- "files": [
11
- "index.ts",
12
- "compileScripts.ts",
13
- "test/tests.ts"
14
- ],
15
- "include": [
16
- "src/*.ts",
17
- "helpers/*.ts"
18
- ],
19
- "exclude": [
20
- "node_modules/**.ts",
21
- "**/*.spec.ts"
22
- ]
1
+ {
2
+ "compileOnSave": true,
3
+ "compilerOptions": {
4
+ "target": "ES2018",
5
+ "declaration": true,
6
+ "module": "commonjs",
7
+ "strict": false,
8
+ "noCheck": true,
9
+ "types": ["node", "jest"],
10
+ "skipLibCheck": true,
11
+ "sourceMap": true
12
+ },
13
+ "files": [
14
+ "index.ts",
15
+ "src/compileScripts.ts",
16
+ "test/tests.ts"
17
+ ],
18
+ "include": [
19
+ "src/*.ts",
20
+ "helpers/*.ts"
21
+ ],
22
+ "exclude": [
23
+ "node_modules",
24
+ "**/*.spec.ts"
25
+ ]
23
26
  }