squiffy-compiler 6.0.0-alpha.0 → 6.0.0-alpha.2

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 (53) hide show
  1. package/dist/compiler.d.ts +2 -1
  2. package/dist/compiler.js +11 -9
  3. package/package.json +7 -17
  4. package/dist/compiler.test.d.ts +0 -1
  5. package/dist/compiler.test.js +0 -73
  6. package/dist/external-files.d.ts +0 -5
  7. package/dist/external-files.js +0 -21
  8. package/dist/index.template.html +0 -39
  9. package/dist/packager.d.ts +0 -1
  10. package/dist/packager.js +0 -78
  11. package/dist/server.d.ts +0 -1
  12. package/dist/server.js +0 -15
  13. package/dist/squiffy.d.ts +0 -1
  14. package/dist/squiffy.js +0 -29
  15. package/dist/squiffy.runtime.d.ts +0 -34
  16. package/dist/squiffy.template.d.ts +0 -29
  17. package/dist/squiffy.template.js +0 -598
  18. package/dist/style.template.css +0 -52
  19. package/dist/version.d.ts +0 -1
  20. package/dist/version.js +0 -1
  21. package/examples/attributes/attributes.squiffy +0 -81
  22. package/examples/clearscreen/clearscreen.squiffy +0 -15
  23. package/examples/continue/continue.squiffy +0 -18
  24. package/examples/helloworld/helloworld.squiffy +0 -1
  25. package/examples/import/file2.squiffy +0 -8
  26. package/examples/import/test.js +0 -3
  27. package/examples/import/test.squiffy +0 -5
  28. package/examples/input/input.squiffy +0 -22
  29. package/examples/last/last.squiffy +0 -32
  30. package/examples/master/master.squiffy +0 -35
  31. package/examples/replace/replace.squiffy +0 -27
  32. package/examples/rotate/rotate.squiffy +0 -25
  33. package/examples/sectiontrack/sectiontrack.squiffy +0 -16
  34. package/examples/start/start.squiffy +0 -7
  35. package/examples/test/example.squiffy +0 -52
  36. package/examples/textprocessor/textprocessor.squiffy +0 -21
  37. package/examples/transitions/transitions.squiffy +0 -53
  38. package/examples/turncount/turncount.squiffy +0 -41
  39. package/examples/warnings/warnings.squiffy +0 -23
  40. package/examples/warnings/warnings2.squiffy +0 -3
  41. package/src/__snapshots__/compiler.test.ts.snap +0 -716
  42. package/src/compiler.test.ts +0 -86
  43. package/src/compiler.ts +0 -546
  44. package/src/external-files.ts +0 -22
  45. package/src/index.template.html +0 -39
  46. package/src/packager.ts +0 -97
  47. package/src/server.ts +0 -19
  48. package/src/squiffy.runtime.ts +0 -670
  49. package/src/squiffy.ts +0 -36
  50. package/src/style.template.css +0 -52
  51. package/src/version.ts +0 -1
  52. package/tsconfig.json +0 -22
  53. package/tsconfig.runtime.json +0 -12
@@ -1,52 +0,0 @@
1
- a.squiffy-link
2
- {
3
- text-decoration: underline;
4
- color: Blue;
5
- cursor: pointer;
6
- }
7
- a.squiffy-link.disabled
8
- {
9
- text-decoration: inherit;
10
- color: inherit !important;
11
- cursor: inherit;
12
- }
13
- button.squiffy-header-button
14
- {
15
- text-decoration: underline;
16
- color: Blue;
17
- cursor: pointer;
18
- background: none;
19
- border: none;
20
- font-family: inherit;
21
- }
22
- div#squiffy-container
23
- {
24
- max-width: 700px;
25
- margin-left: auto;
26
- margin-right: auto;
27
- font-family: Georgia, serif;
28
- }
29
- div#squiffy-header
30
- {
31
- font-size: 14px;
32
- text-align: right;
33
- }
34
- div#squiffy
35
- {
36
- font-size: 18px;
37
- }
38
- hr {
39
- border: 0;
40
- height: 0;
41
- border-top: 1px solid rgba(0, 0, 0, 0.1);
42
- border-bottom: 1px solid rgba(255, 255, 255, 0.3);
43
- margin-top: 16px; margin-bottom: 16px;
44
- }
45
- .fade-out {
46
- opacity: 0;
47
- transition: opacity 1000ms;
48
- }
49
- .fade-in {
50
- opacity: 1;
51
- transition: opacity 1000ms;
52
- }
package/src/version.ts DELETED
@@ -1 +0,0 @@
1
- export const SQUIFFY_VERSION = '6.0.0-alpha.0';
package/tsconfig.json DELETED
@@ -1,22 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "useDefineForClassFields": true,
5
- "module": "NodeNext",
6
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
7
- "skipLibCheck": true,
8
- "alwaysStrict": true,
9
- "outDir": "dist",
10
- "declaration": true,
11
-
12
- "moduleResolution": "NodeNext",
13
- "resolveJsonModule": true,
14
- "isolatedModules": true,
15
-
16
- "strict": true,
17
- "noUnusedLocals": true,
18
- "noUnusedParameters": true,
19
- "noFallthroughCasesInSwitch": true
20
- },
21
- "include": ["src"]
22
- }
@@ -1,12 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "noImplicitAny": true,
5
- "noUnusedLocals": true,
6
- "noUnusedParameters": true,
7
- "noFallthroughCasesInSwitch": true,
8
- "skipLibCheck": true
9
- },
10
- "include": ["src/squiffy.runtime.ts"]
11
- }
12
-