marko 4.26.3 → 4.27.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (250) hide show
  1. package/README.md +1 -1
  2. package/bin/markoc.js +15 -15
  3. package/dist/compiler/ast/CustomTag.js +2 -2
  4. package/dist/core-tags/components/TransformHelper/handleLegacyBind.js +0 -4
  5. package/dist/core-tags/core/await/renderer.js +0 -4
  6. package/dist/core-tags/migrate/all-tags/body-only-if.js +0 -1
  7. package/dist/core-tags/migrate/all-tags/control-flow-directives.js +0 -1
  8. package/dist/core-tags/migrate/all-tags/dynamic-attributes.js +1 -2
  9. package/dist/core-tags/migrate/all-tags/include-directive.js +0 -2
  10. package/dist/core-tags/migrate/all-tags/legacy-nested-tag.js +0 -2
  11. package/dist/core-tags/migrate/all-tags/marko-init.js +0 -2
  12. package/dist/core-tags/migrate/all-tags/modifier-key.js +0 -2
  13. package/dist/core-tags/migrate/all-tags/ref.js +1 -3
  14. package/dist/core-tags/migrate/all-tags/w-bind.js +0 -2
  15. package/dist/core-tags/migrate/all-tags/w-body.js +0 -2
  16. package/dist/core-tags/migrate/all-tags/w-config.js +0 -2
  17. package/dist/core-tags/migrate/all-tags/w-for.js +0 -3
  18. package/dist/core-tags/migrate/all-tags/w-id.js +1 -4
  19. package/dist/core-tags/migrate/all-tags/w-on.js +1 -4
  20. package/dist/core-tags/migrate/all-tags/w-preserve-attrs.js +0 -2
  21. package/dist/core-tags/migrate/all-tags/w-preserve.js +1 -3
  22. package/dist/core-tags/migrate/all-tags/widget-in-attrs.js +2 -11
  23. package/dist/core-tags/migrate/all-templates/non-standard-template-literals.js +0 -4
  24. package/dist/core-tags/migrate/all-templates/render-calls.js +0 -2
  25. package/dist/core-tags/migrate/assign-tag.js +0 -2
  26. package/dist/core-tags/migrate/async-fragment-tag.js +0 -2
  27. package/dist/core-tags/migrate/async-fragments-tag.js +0 -2
  28. package/dist/core-tags/migrate/await-tag.js +0 -7
  29. package/dist/core-tags/migrate/class-tag.js +0 -2
  30. package/dist/core-tags/migrate/component-globals-tag.js +0 -2
  31. package/dist/core-tags/migrate/for-tag.js +0 -2
  32. package/dist/core-tags/migrate/include-tag.js +0 -1
  33. package/dist/core-tags/migrate/invoke-tag.js +0 -2
  34. package/dist/core-tags/migrate/layout-placeholder-tag.js +0 -1
  35. package/dist/core-tags/migrate/layout-put-tag.js +0 -1
  36. package/dist/core-tags/migrate/layout-use-tag.js +0 -1
  37. package/dist/core-tags/migrate/macro-body-tag.js +0 -2
  38. package/dist/core-tags/migrate/macro-tag.js +0 -2
  39. package/dist/core-tags/migrate/unless-tag.js +0 -1
  40. package/dist/core-tags/migrate/var-tag.js +0 -2
  41. package/dist/node_modules/@internal/components-define-widget-legacy/index-browser.js +0 -10
  42. package/dist/node_modules/@internal/components-entry-legacy/index-browser.js +0 -4
  43. package/dist/runtime/RenderResult.js +0 -3
  44. package/dist/runtime/components/Component.js +0 -6
  45. package/dist/runtime/components/ComponentDef.js +0 -3
  46. package/dist/runtime/components/ServerComponent.js +0 -4
  47. package/dist/runtime/components/legacy/defineComponent-legacy.js +0 -3
  48. package/dist/runtime/components/legacy/defineRenderer-legacy.js +1 -6
  49. package/dist/runtime/components/legacy/index.js +3 -1
  50. package/dist/runtime/helpers/for-of.js +3 -1
  51. package/dist/runtime/html/helpers/attr.js +0 -4
  52. package/dist/runtime/html/helpers/attrs.js +0 -2
  53. package/dist/runtime/html/helpers/merge-attrs.js +0 -3
  54. package/dist/runtime/vdom/VElement.js +0 -3
  55. package/dist/runtime/vdom/helpers/attrs.js +0 -2
  56. package/dist/taglib/taglib-loader/loadTagFromProps.js +15 -0
  57. package/docs/10-awesome-marko-features.md +1 -1
  58. package/docs/body-content.md +3 -3
  59. package/docs/class-components.md +6 -6
  60. package/docs/express.md +1 -1
  61. package/docs/fastify.md +4 -4
  62. package/docs/hapi.md +3 -3
  63. package/docs/http.md +1 -1
  64. package/docs/huncwot.md +1 -1
  65. package/docs/installing.md +2 -2
  66. package/docs/koa.md +2 -2
  67. package/docs/lasso.md +1 -1
  68. package/docs/marko-4-upgrade.md +1 -1
  69. package/docs/marko-v4.md +4 -4
  70. package/docs/marko-vs-react.md +2 -2
  71. package/docs/rendering.md +6 -6
  72. package/docs/server-side-rendering.md +3 -3
  73. package/docs/webpack.md +16 -16
  74. package/docs/why-is-marko-fast.md +3 -3
  75. package/package.json +1 -1
  76. package/src/compiler/Builder.js +13 -13
  77. package/src/compiler/CodeGenerator.js +2 -2
  78. package/src/compiler/CodeWriter.js +1 -1
  79. package/src/compiler/CompileContext.js +30 -30
  80. package/src/compiler/Compiler.js +3 -3
  81. package/src/compiler/HtmlJsParser.js +4 -4
  82. package/src/compiler/Migrator.js +2 -2
  83. package/src/compiler/Normalizer.js +5 -5
  84. package/src/compiler/Parser.js +11 -11
  85. package/src/compiler/Walker.js +1 -1
  86. package/src/compiler/ast/ArrayExpression.js +1 -1
  87. package/src/compiler/ast/BinaryExpression.js +1 -1
  88. package/src/compiler/ast/ConditionalExpression.js +1 -1
  89. package/src/compiler/ast/CustomTag.js +14 -14
  90. package/src/compiler/ast/Declaration.js +2 -2
  91. package/src/compiler/ast/DocumentType.js +2 -2
  92. package/src/compiler/ast/ForEach.js +1 -1
  93. package/src/compiler/ast/ForEachProp.js +1 -1
  94. package/src/compiler/ast/ForRange.js +1 -1
  95. package/src/compiler/ast/HtmlAttribute/html/generateCode.js +4 -4
  96. package/src/compiler/ast/HtmlAttribute/vdom/generateCode.js +2 -2
  97. package/src/compiler/ast/HtmlAttributeCollection.js +3 -3
  98. package/src/compiler/ast/HtmlComment.js +1 -1
  99. package/src/compiler/ast/HtmlElement/html/EndTag.js +1 -1
  100. package/src/compiler/ast/HtmlElement/html/StartTag.js +3 -3
  101. package/src/compiler/ast/HtmlElement/html/generateCode.js +5 -5
  102. package/src/compiler/ast/HtmlElement/index.js +1 -1
  103. package/src/compiler/ast/HtmlElement/vdom/HtmlElementVDOM.js +1 -1
  104. package/src/compiler/ast/HtmlElement/vdom/generateCode.js +3 -3
  105. package/src/compiler/ast/If.js +1 -1
  106. package/src/compiler/ast/LogicalExpression.js +1 -1
  107. package/src/compiler/ast/MemberExpression.js +1 -1
  108. package/src/compiler/ast/NewExpression.js +1 -1
  109. package/src/compiler/ast/Node.js +4 -4
  110. package/src/compiler/ast/ObjectExpression.js +2 -2
  111. package/src/compiler/ast/Property.js +1 -1
  112. package/src/compiler/ast/SequenceExpression.js +1 -1
  113. package/src/compiler/ast/TemplateLiteral.js +1 -1
  114. package/src/compiler/ast/TemplateRoot.js +3 -3
  115. package/src/compiler/ast/Text/index.js +1 -1
  116. package/src/compiler/ast/UnaryExpression.js +1 -1
  117. package/src/compiler/ast/UpdateExpression.js +1 -1
  118. package/src/compiler/config.js +1 -1
  119. package/src/compiler/index.js +5 -5
  120. package/src/compiler/modules.js +2 -2
  121. package/src/compiler/util/UniqueVars.js +4 -4
  122. package/src/compiler/util/convertRawJavaScriptAst.js +1 -1
  123. package/src/compiler/util/javaScriptReservedWords.js +1 -1
  124. package/src/compiler/util/macros.js +1 -1
  125. package/src/compiler/util/mergeProps.js +3 -3
  126. package/src/compiler/util/parseJavaScriptArgs.js +1 -1
  127. package/src/compiler/util/parseJavaScriptParams.js +1 -1
  128. package/src/compiler/util/parseRawJavaScriptAst.js +1 -1
  129. package/src/compiler/util/removeComments.js +6 -6
  130. package/src/compiler/util/tokenizer.js +3 -3
  131. package/src/compiler/util/vdom/VDOMOptimizer.js +2 -2
  132. package/src/core-tags/cache/cached-fragment-tag.js +2 -2
  133. package/src/core-tags/cache/default-cache-manager.js +2 -2
  134. package/src/core-tags/components/TransformHelper/ComponentArgsCompiler.js +3 -3
  135. package/src/core-tags/components/TransformHelper/assignComponentId.js +3 -3
  136. package/src/core-tags/components/TransformHelper/convertToComponent.js +4 -4
  137. package/src/core-tags/components/TransformHelper/getComponentFiles.js +1 -1
  138. package/src/core-tags/components/TransformHelper/handleComponentEvents.js +3 -3
  139. package/src/core-tags/components/TransformHelper/handleComponentPreserve.js +7 -7
  140. package/src/core-tags/components/TransformHelper/handleLegacyBind.js +2 -8
  141. package/src/core-tags/components/TransformHelper/handleRootNodes.js +14 -14
  142. package/src/core-tags/components/TransformHelper/handleScopedAttrs.js +1 -1
  143. package/src/core-tags/components/TransformHelper/index.js +1 -1
  144. package/src/core-tags/components/component-tag.js +1 -1
  145. package/src/core-tags/components/components-transformer.js +2 -2
  146. package/src/core-tags/components/util/generateRegisterComponentCode.js +2 -2
  147. package/src/core-tags/components/widget-types-tag.js +2 -2
  148. package/src/core-tags/core/await/AsyncValue.js +1 -1
  149. package/src/core-tags/core/await/renderer.js +3 -12
  150. package/src/core-tags/core/await/reorderer-renderer.js +1 -1
  151. package/src/core-tags/core/core-transformer.js +5 -5
  152. package/src/core-tags/core/html-comment-tag.js +1 -1
  153. package/src/core-tags/core/import-tag.js +1 -1
  154. package/src/core-tags/core/util/parseImport.js +8 -8
  155. package/src/core-tags/html/normalize-script-text.js +1 -1
  156. package/src/core-tags/migrate/all-tags/body-only-if.js +4 -5
  157. package/src/core-tags/migrate/all-tags/control-flow-directives.js +2 -5
  158. package/src/core-tags/migrate/all-tags/dynamic-attributes.js +1 -4
  159. package/src/core-tags/migrate/all-tags/include-directive.js +0 -4
  160. package/src/core-tags/migrate/all-tags/index.js +2 -2
  161. package/src/core-tags/migrate/all-tags/legacy-nested-tag.js +0 -5
  162. package/src/core-tags/migrate/all-tags/marko-init.js +2 -8
  163. package/src/core-tags/migrate/all-tags/modifier-key.js +1 -7
  164. package/src/core-tags/migrate/all-tags/params.js +1 -1
  165. package/src/core-tags/migrate/all-tags/ref.js +1 -5
  166. package/src/core-tags/migrate/all-tags/w-bind.js +8 -12
  167. package/src/core-tags/migrate/all-tags/w-body.js +3 -7
  168. package/src/core-tags/migrate/all-tags/w-config.js +1 -5
  169. package/src/core-tags/migrate/all-tags/w-for.js +1 -8
  170. package/src/core-tags/migrate/all-tags/w-id.js +1 -8
  171. package/src/core-tags/migrate/all-tags/w-on.js +2 -9
  172. package/src/core-tags/migrate/all-tags/w-preserve-attrs.js +1 -5
  173. package/src/core-tags/migrate/all-tags/w-preserve.js +3 -7
  174. package/src/core-tags/migrate/all-tags/widget-in-attrs.js +4 -17
  175. package/src/core-tags/migrate/all-templates/index.js +2 -2
  176. package/src/core-tags/migrate/all-templates/non-standard-template-literals.js +6 -12
  177. package/src/core-tags/migrate/all-templates/render-calls.js +4 -8
  178. package/src/core-tags/migrate/all-templates/widget-data-is-state.js +2 -2
  179. package/src/core-tags/migrate/all-templates/widget-get-template-data.js +2 -2
  180. package/src/core-tags/migrate/assign-tag.js +2 -6
  181. package/src/core-tags/migrate/async-fragment-tag.js +2 -6
  182. package/src/core-tags/migrate/async-fragments-tag.js +0 -4
  183. package/src/core-tags/migrate/await-tag.js +8 -23
  184. package/src/core-tags/migrate/class-tag.js +0 -4
  185. package/src/core-tags/migrate/component-globals-tag.js +0 -4
  186. package/src/core-tags/migrate/for-tag.js +12 -16
  187. package/src/core-tags/migrate/include-tag.js +2 -5
  188. package/src/core-tags/migrate/invoke-tag.js +2 -6
  189. package/src/core-tags/migrate/layout-placeholder-tag.js +0 -3
  190. package/src/core-tags/migrate/layout-put-tag.js +0 -3
  191. package/src/core-tags/migrate/layout-use-tag.js +0 -3
  192. package/src/core-tags/migrate/macro-body-tag.js +0 -5
  193. package/src/core-tags/migrate/macro-tag.js +5 -10
  194. package/src/core-tags/migrate/unless-tag.js +0 -3
  195. package/src/core-tags/migrate/util/addIdScopedAttr.js +1 -1
  196. package/src/core-tags/migrate/util/import-tag.js +6 -6
  197. package/src/core-tags/migrate/util/parseFor.js +20 -20
  198. package/src/core-tags/migrate/util/renderCallToDynamicTag.js +7 -7
  199. package/src/core-tags/migrate/var-tag.js +4 -8
  200. package/src/express.js +1 -1
  201. package/src/hot-reload.js +3 -3
  202. package/src/node-require/index.js +1 -1
  203. package/src/node_modules/@internal/components-define-widget-legacy/index-browser.js +4 -55
  204. package/src/node_modules/@internal/components-entry-legacy/index-browser.js +0 -10
  205. package/src/runtime/RenderResult.js +3 -16
  206. package/src/runtime/components/Component.js +2 -23
  207. package/src/runtime/components/ComponentDef.js +2 -8
  208. package/src/runtime/components/ComponentsContext.js +1 -1
  209. package/src/runtime/components/ServerComponent.js +0 -6
  210. package/src/runtime/components/State.js +2 -2
  211. package/src/runtime/components/attach-detach.js +1 -1
  212. package/src/runtime/components/dom-data.js +1 -1
  213. package/src/runtime/components/legacy/defineComponent-legacy.js +0 -5
  214. package/src/runtime/components/legacy/defineRenderer-legacy.js +1 -16
  215. package/src/runtime/components/legacy/dependencies/index.js +10 -10
  216. package/src/runtime/components/legacy/index.js +5 -0
  217. package/src/runtime/components/legacy/renderer-legacy.js +1 -1
  218. package/src/runtime/components/update-manager.js +1 -1
  219. package/src/runtime/dom-insert.js +1 -1
  220. package/src/runtime/helpers/_weak-map.js +1 -1
  221. package/src/runtime/helpers/bind-component.js +1 -1
  222. package/src/runtime/helpers/for-of.js +1 -6
  223. package/src/runtime/html/AsyncStream.js +5 -5
  224. package/src/runtime/html/BufferedWriter.js +1 -1
  225. package/src/runtime/html/StringWriter.js +1 -1
  226. package/src/runtime/html/helpers/attr.js +0 -9
  227. package/src/runtime/html/helpers/attrs.js +0 -6
  228. package/src/runtime/html/helpers/merge-attrs.js +0 -8
  229. package/src/runtime/html/index.js +1 -1
  230. package/src/runtime/renderable.js +1 -1
  231. package/src/runtime/vdom/AsyncVDOMBuilder.js +2 -2
  232. package/src/runtime/vdom/VComment.js +1 -1
  233. package/src/runtime/vdom/VComponent.js +1 -1
  234. package/src/runtime/vdom/VDocumentFragment.js +1 -1
  235. package/src/runtime/vdom/VElement.js +4 -11
  236. package/src/runtime/vdom/VFragment.js +1 -1
  237. package/src/runtime/vdom/VNode.js +1 -1
  238. package/src/runtime/vdom/VText.js +1 -1
  239. package/src/runtime/vdom/helpers/attrs.js +0 -7
  240. package/src/runtime/vdom/index.js +1 -1
  241. package/src/runtime/vdom/morphdom/fragment.js +1 -1
  242. package/src/runtime/vdom/morphdom/specialElHandlers.js +1 -1
  243. package/src/taglib/taglib-finder/index.js +5 -5
  244. package/src/taglib/taglib-loader/Tag.js +8 -8
  245. package/src/taglib/taglib-loader/Taglib.js +1 -1
  246. package/src/taglib/taglib-loader/loadAttributeFromProps.js +1 -1
  247. package/src/taglib/taglib-loader/loadTagFromProps.js +29 -14
  248. package/src/taglib/taglib-loader/loadTaglibFromProps.js +9 -9
  249. package/src/taglib/taglib-loader/scanTagsDir.js +6 -6
  250. package/src/taglib/taglib-lookup/TaglibLookup.js +8 -8
@@ -22,16 +22,12 @@ module.exports = function migrator(el, context) {
22
22
  return;
23
23
  }
24
24
 
25
- context.deprecate(
26
- "Directly rendering by passing `out` to a function is deprecated. Please use the dynamic tag instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-imperative-render-calls"
27
- );
28
-
29
25
  if (hasErrors) {
30
26
  return;
31
27
  }
32
28
 
33
29
  if (!replacement.type) {
34
- replacement.forEachChild(child => node.insertSiblingBefore(child));
30
+ replacement.forEachChild((child) => node.insertSiblingBefore(child));
35
31
  node.detach();
36
32
  } else {
37
33
  node.replaceWith(replacement);
@@ -41,14 +37,14 @@ module.exports = function migrator(el, context) {
41
37
  const builder = context.builder;
42
38
  if (!node.type) {
43
39
  if (node.replaceChild) {
44
- node.forEach(child => {
40
+ node.forEach((child) => {
45
41
  const replacement = replaceScriptlets(child, context);
46
42
  if (child !== replacement) {
47
43
  node.replaceChild(replacement, child);
48
44
  }
49
45
  });
50
46
  } else if (node.body) {
51
- node.body.forEach(child => {
47
+ node.body.forEach((child) => {
52
48
  const replacement = replaceScriptlets(child, context);
53
49
  if (child !== replacement) {
54
50
  node.body.replaceChild(replacement, child);
@@ -128,7 +124,7 @@ module.exports = function migrator(el, context) {
128
124
 
129
125
  return node;
130
126
  }
131
- }
127
+ },
132
128
  });
133
129
  walker.walk(el);
134
130
  };
@@ -8,9 +8,9 @@ module.exports = function migrator(el, context) {
8
8
  apply() {
9
9
  context.root.prependChild(
10
10
  context.builder.scriptlet({
11
- value: "var data = state"
11
+ value: "var data = state",
12
12
  })
13
13
  );
14
- }
14
+ },
15
15
  });
16
16
  };
@@ -7,9 +7,9 @@ module.exports = function migrator(el, context) {
7
7
  apply() {
8
8
  context.root.prependChild(
9
9
  context.builder.scriptlet({
10
- value: "var data = component.getTemplateData(state, input)"
10
+ value: "var data = component.getTemplateData(state, input)",
11
11
  })
12
12
  );
13
- }
13
+ },
14
14
  });
15
15
  };
@@ -7,10 +7,6 @@ module.exports = function migrator(elNode, context) {
7
7
  commonTagMigrator(elNode, context);
8
8
  elNode.setTransformerApplied(commonTagMigrator);
9
9
 
10
- context.deprecate(
11
- 'The "<assign>" tag is deprecated. Please use "$ <js_code>" for JavaScript in the template. See: https://github.com/marko-js/marko/wiki/Deprecation:-var,-assign,-invoke-tags'
12
- );
13
-
14
10
  if (!attributes) {
15
11
  context.addError(
16
12
  "Invalid <assign> tag. Argument is missing. Example; <assign x=123 />"
@@ -18,13 +14,13 @@ module.exports = function migrator(elNode, context) {
18
14
  return elNode;
19
15
  }
20
16
 
21
- elNode.attributes.forEach(attr => {
17
+ elNode.attributes.forEach((attr) => {
22
18
  elNode.insertSiblingBefore(
23
19
  builder.scriptlet({
24
20
  value:
25
21
  attr.value == null
26
22
  ? attr.name
27
- : `${attr.name} = ${printJS(attr.value, context, null, true)}`
23
+ : `${attr.name} = ${printJS(attr.value, context, null, true)}`,
28
24
  })
29
25
  );
30
26
  });
@@ -2,16 +2,12 @@ const awaitTagMigration = require("./await-tag");
2
2
  const newTags = {
3
3
  "async-fragment-placeholder": "await-placeholder",
4
4
  "async-fragment-timeout": "await-timeout",
5
- "async-fragment-error": "await-error"
5
+ "async-fragment-error": "await-error",
6
6
  };
7
7
  module.exports = function migrator(elNode, context) {
8
8
  const builder = context.builder;
9
9
  const attributes = elNode.attributes;
10
10
 
11
- context.deprecate(
12
- `The "<async-fragment>" tag is deprecated. Please use "<await>" instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-async-fragment`
13
- );
14
-
15
11
  if (!attributes || !attributes.length) {
16
12
  context.addError(
17
13
  'Invalid <async-fragment> tag. Argument is missing. Example; <async-fragment data-provider=data.userInfo var="userInfo" />'
@@ -34,7 +30,7 @@ module.exports = function migrator(elNode, context) {
34
30
  return;
35
31
  }
36
32
 
37
- elNode.forEachChild(child => {
33
+ elNode.forEachChild((child) => {
38
34
  const newTag = newTags[child.tagName];
39
35
  if (newTag) {
40
36
  child.tagName = newTag;
@@ -5,10 +5,6 @@ module.exports = function migrator(elNode, context) {
5
5
  commonTagMigrator(elNode, context);
6
6
  elNode.setTransformerApplied(commonTagMigrator);
7
7
 
8
- context.deprecate(
9
- `The "<async-fragments>" tag is deprecated. Please use "<await-reorderer>" instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-async-fragment`
10
- );
11
-
12
8
  // all this tag ever did was handling of client reordering
13
9
  // we'll remove the attribute as that's all this new tag does
14
10
  elNode.removeAttribute("client-reorder");
@@ -9,10 +9,6 @@ module.exports = function migrator(elNode, context) {
9
9
  return;
10
10
  }
11
11
 
12
- context.deprecate(
13
- 'The "<await(result from promise)>" syntax has been deprecated, please use the modern syntax of "<await(promise)><@then|result|>". See: https://github.com/marko-js/marko/wiki/Deprecation:-legacy-await'
14
- );
15
-
16
12
  elNode.argument = undefined;
17
13
  let provider = builder.expression(match[2]);
18
14
  const varName = match[1];
@@ -20,8 +16,8 @@ module.exports = function migrator(elNode, context) {
20
16
  const scopeExpression =
21
17
  elNode.getAttributeValue("scope") || (methodExpression ? provider : null);
22
18
  const argAssignments = elNode.attributes
23
- .filter(attr => attr.name && attr.name.startsWith("arg-"))
24
- .map(attr => {
19
+ .filter((attr) => attr.name && attr.name.startsWith("arg-"))
20
+ .map((attr) => {
25
21
  elNode.removeAttribute(attr.name);
26
22
  return [attr.name.slice(4), attr.value];
27
23
  });
@@ -50,14 +46,14 @@ module.exports = function migrator(elNode, context) {
50
46
  builder.scriptlet({
51
47
  value: printJS(
52
48
  builder.vars({
53
- arg: argExpression
49
+ arg: argExpression,
54
50
  }),
55
51
  context
56
- )
52
+ ),
57
53
  })
58
54
  );
59
55
 
60
- argAssignments.forEach(assignment => {
56
+ argAssignments.forEach((assignment) => {
61
57
  elNode.insertSiblingBefore(
62
58
  builder.scriptlet({
63
59
  value: printJS(
@@ -71,7 +67,7 @@ module.exports = function migrator(elNode, context) {
71
67
  "="
72
68
  ),
73
69
  context
74
- )
70
+ ),
75
71
  })
76
72
  );
77
73
  });
@@ -102,34 +98,23 @@ module.exports = function migrator(elNode, context) {
102
98
 
103
99
  let placeholderBody;
104
100
  if (elNode.hasAttribute("placeholder")) {
105
- context.deprecate(
106
- 'The "placeholder" attribute on the "<await>" tag is deprecated. Please use the "<@placeholder>" nested tag instead.'
107
- );
108
-
109
101
  placeholderBody = [builder.text(elNode.getAttributeValue("placeholder"))];
110
102
  elNode.removeAttribute("placeholder");
111
103
  }
112
104
 
113
105
  let timeoutBody;
114
106
  if (elNode.hasAttribute("timeout-message")) {
115
- context.deprecate(
116
- 'The "timeout-message" attribute on the "<await>" tag is deprecated. Please use the "<@catch|err|>" nested tag instead with a check for "err.name === "TimeoutError".'
117
- );
118
-
119
107
  timeoutBody = [builder.text(elNode.getAttributeValue("timeout-message"))];
120
108
  elNode.removeAttribute("timeout-message");
121
109
  }
122
110
 
123
111
  let errorBody;
124
112
  if (elNode.hasAttribute("error-message")) {
125
- context.deprecate(
126
- 'The "error-message" attribute on the "<await>" tag is deprecated. Please use the "<@catch>" nested tag instead.'
127
- );
128
113
  errorBody = [builder.text(elNode.getAttributeValue("error-message"))];
129
114
  elNode.removeAttribute("error-message");
130
115
  }
131
116
 
132
- elNode.forEachChild(childNode => {
117
+ elNode.forEachChild((childNode) => {
133
118
  if (childNode.type !== "HtmlElement") {
134
119
  return;
135
120
  }
@@ -202,7 +187,7 @@ module.exports = function migrator(elNode, context) {
202
187
  undefined,
203
188
  timeoutBody,
204
189
  'err.name === "TimeoutError"'
205
- )
190
+ ),
206
191
  ];
207
192
 
208
193
  if (originalErrorBody) {
@@ -11,9 +11,5 @@ module.exports = function migrator(el, context) {
11
11
  );
12
12
  }
13
13
 
14
- context.deprecate(
15
- "Having a named class at the top level of a file is deprecated. Use `class {...}` without a name instead."
16
- );
17
-
18
14
  el.tagString = el.tagString.replace(classNamedRegexp, "$1$2");
19
15
  };
@@ -1,7 +1,3 @@
1
1
  module.exports = function render(elNode, context) {
2
- context.deprecate(
3
- "The <component-globals> tag is deprecated. This functionality has been added to the '<init-components>' tag (which is automatically inserted at the end of the <body> tag), you can safely remove the '<component-globals>' tag."
4
- );
5
-
6
2
  elNode.detach();
7
3
  };
@@ -21,10 +21,6 @@ function migrateForLoop(elNode, context) {
21
21
  return;
22
22
  }
23
23
 
24
- context.deprecate(
25
- 'The "<for(...)>" syntax has been deprecated, checkout the modern syntax here: https://github.com/marko-js/marko/wiki/Deprecation:-legacy-for'
26
- );
27
-
28
24
  try {
29
25
  parsed = parseFor(elNode.argument);
30
26
  elNode.argument = undefined;
@@ -80,10 +76,10 @@ function migrateForLoop(elNode, context) {
80
76
  builder.variableDeclarator(
81
77
  iteratorResultName,
82
78
  builder.arrayExpression([])
83
- )
79
+ ),
84
80
  ]),
85
81
  context
86
- )
82
+ ),
87
83
  })
88
84
  );
89
85
 
@@ -102,12 +98,12 @@ function migrateForLoop(elNode, context) {
102
98
  builder.identifier("push")
103
99
  ),
104
100
  [itemName]
105
- )
101
+ ),
106
102
  ]
107
- )
103
+ ),
108
104
  ]),
109
105
  context
110
- )
106
+ ),
111
107
  })
112
108
  );
113
109
 
@@ -172,7 +168,7 @@ function migrateForLoop(elNode, context) {
172
168
  builder.memberExpression(parsed.in, parsed.nameVarName, true)
173
169
  ),
174
170
  context
175
- )
171
+ ),
176
172
  })
177
173
  );
178
174
 
@@ -208,7 +204,7 @@ function migrateForLoop(elNode, context) {
208
204
  elNode.insertSiblingBefore(
209
205
  builder.scriptlet({
210
206
  value: printJS(parsed.init, context),
211
- block: true
207
+ block: true,
212
208
  })
213
209
  );
214
210
  }
@@ -217,7 +213,7 @@ function migrateForLoop(elNode, context) {
217
213
  elNode.appendChild(
218
214
  builder.scriptlet({
219
215
  value: printJS(parsed.update, context),
220
- block: true
216
+ block: true,
221
217
  })
222
218
  );
223
219
  }
@@ -329,7 +325,7 @@ function normalizeParts(parsed, builder) {
329
325
  varName: varName,
330
326
  from: from,
331
327
  to: to,
332
- step: step
328
+ step: step,
333
329
  };
334
330
  }
335
331
 
@@ -354,7 +350,7 @@ function replaceStatusVarInBody(el, context, parsed) {
354
350
  indexIdentifier,
355
351
  "===",
356
352
  builder.binaryExpression(lengthIdentifier, "-", builder.literal(1))
357
- )
353
+ ),
358
354
  };
359
355
 
360
356
  const remapKeys = Object.keys(remaps);
@@ -373,7 +369,7 @@ function replaceStatusVarInBody(el, context, parsed) {
373
369
  `${statusVarName}\\.(${remapKeys.join("|")})\\(\\)`,
374
370
  "g"
375
371
  );
376
- const remapReplacer = str =>
372
+ const remapReplacer = (str) =>
377
373
  str.replace(remapRegexp, (_, key) => remapStrings[key]);
378
374
  const visitor = {
379
375
  enter(node) {
@@ -402,7 +398,7 @@ function replaceStatusVarInBody(el, context, parsed) {
402
398
  this.skip();
403
399
  }
404
400
  }
405
- }
401
+ },
406
402
  };
407
403
 
408
404
  context.createWalker(visitor).walk(el.body);
@@ -5,9 +5,6 @@ const commonTagMigrator = require("./all-tags");
5
5
  module.exports = function migrator(elNode, context) {
6
6
  commonTagMigrator(elNode, context);
7
7
  elNode.setTransformerApplied(commonTagMigrator);
8
- context.deprecate(
9
- 'The "<include>" tag is deprecated. Please use the "<${dynamic}/>" tag or regular text replacement instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-include-tag'
10
- );
11
8
 
12
9
  const builder = context.builder;
13
10
  const rawArg = elNode.argument;
@@ -53,8 +50,8 @@ module.exports = function migrator(elNode, context) {
53
50
  elNode.insertSiblingBefore(
54
51
  builder.scriptlet({
55
52
  value: builder.vars({
56
- [identifierName]: target
57
- })
53
+ [identifierName]: target,
54
+ }),
58
55
  })
59
56
  );
60
57
 
@@ -8,10 +8,6 @@ module.exports = function migrator(elNode, context) {
8
8
  const functionAttr = elNode.attributes[0];
9
9
  const functionArgs = functionAttr.argument;
10
10
 
11
- context.deprecate(
12
- 'The "<invoke>" tag is deprecated. Please use "$ <js_code>" for JavaScript in the template. See: https://github.com/marko-js/marko/wiki/Deprecation:-var,-assign,-invoke-tags'
13
- );
14
-
15
11
  if (!functionAttr) {
16
12
  context.addError(
17
13
  'Invalid <invoke> tag. Missing function attribute. Expected: <invoke console.log("Hello World")'
@@ -31,14 +27,14 @@ module.exports = function migrator(elNode, context) {
31
27
  let replacement = renderCallToDynamicTag(functionAst, context);
32
28
 
33
29
  if (replacement) {
34
- elNode.forEachAttribute(attr => {
30
+ elNode.forEachAttribute((attr) => {
35
31
  if (attr !== functionAttr) {
36
32
  replacement.addAttribute(attr);
37
33
  }
38
34
  });
39
35
  } else {
40
36
  replacement = builder.scriptlet({
41
- value: functionCallExpression
37
+ value: functionCallExpression,
42
38
  });
43
39
  }
44
40
 
@@ -5,9 +5,6 @@ const commonTagMigrator = require("./all-tags");
5
5
  module.exports = function render(elNode, context) {
6
6
  commonTagMigrator(elNode, context);
7
7
  elNode.setTransformerApplied(commonTagMigrator);
8
- context.deprecate(
9
- "The <layout-placeholder> tag is deprecated. Please use the <${dynamic}> tag instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-layout-tag"
10
- );
11
8
 
12
9
  const builder = context.builder;
13
10
  const name = elNode.getAttributeValue("name");
@@ -3,9 +3,6 @@ const commonTagMigrator = require("./all-tags");
3
3
  module.exports = function migrator(oldNode, context) {
4
4
  commonTagMigrator(oldNode, context);
5
5
  oldNode.setTransformerApplied(commonTagMigrator);
6
- context.deprecate(
7
- 'The "<layout-put>" tag is deprecated and replaced with first class language support. See: https://github.com/marko-js/marko/wiki/Deprecation:-layout-tag'
8
- );
9
6
 
10
7
  const attributes = oldNode.attributes;
11
8
  if (!attributes) {
@@ -5,9 +5,6 @@ const commonTagMigrator = require("./all-tags");
5
5
  module.exports = function render(elNode, context) {
6
6
  commonTagMigrator(elNode, context);
7
7
  elNode.setTransformerApplied(commonTagMigrator);
8
- context.deprecate(
9
- "The <layout-use> tag is deprecated. Please use a combination of the <${dynamic}> tag and imports instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-layout-tag"
10
- );
11
8
 
12
9
  const rawArg = elNode.argument;
13
10
  const attributes = elNode.attributes;
@@ -1,9 +1,4 @@
1
1
  module.exports = function codeGenerator(elNode, context) {
2
- context.deprecate(
3
- 'The "<macro-body>" tag has been deprecated. Please use the <${dynamic}/> tag instead, eg: "<macro|input| ...><${input.renderBody}/></macro>". See: https://github.com/marko-js/marko/wiki/Deprecation:-legacy-macro',
4
- elNode
5
- );
6
-
7
2
  const builder = context.builder;
8
3
  const dynamicTag = builder.htmlElement(undefined, elNode.attributes);
9
4
  dynamicTag.rawTagNameExpression = "macroInput";
@@ -8,7 +8,7 @@ module.exports = function migrator(elNode, context) {
8
8
  if (
9
9
  !attributes.length ||
10
10
  attributes.some(
11
- attr => attr.name === "name" && attr.value.type === "Literal"
11
+ (attr) => attr.name === "name" && attr.value.type === "Literal"
12
12
  )
13
13
  ) {
14
14
  return;
@@ -22,11 +22,6 @@ module.exports = function migrator(elNode, context) {
22
22
  return elNode;
23
23
  }
24
24
 
25
- context.deprecate(
26
- 'The "<macro my-macro(input)>" syntax has been deprecated. Please use the new tag param syntax, eg: "<macro|input| name="my-macro">. See: https://github.com/marko-js/marko/wiki/Deprecation:-legacy-macro',
27
- elNode
28
- );
29
-
30
25
  const name = defAttr.name;
31
26
  const params = defAttr.argument
32
27
  ? builder.parseJavaScriptParams(defAttr.argument)
@@ -48,7 +43,7 @@ module.exports = function migrator(elNode, context) {
48
43
  params.push(builder.identifier("renderBody"));
49
44
  macroWalker.stop();
50
45
  }
51
- }
46
+ },
52
47
  });
53
48
 
54
49
  macroWalker.walk(elNode);
@@ -56,7 +51,7 @@ module.exports = function migrator(elNode, context) {
56
51
  params
57
52
  .slice()
58
53
  .reverse()
59
- .forEach(param => {
54
+ .forEach((param) => {
60
55
  const name = builder.identifier(param.name);
61
56
  const value = builder.memberExpression(
62
57
  builder.identifier("macroInput"),
@@ -67,7 +62,7 @@ module.exports = function migrator(elNode, context) {
67
62
  value: printJS(
68
63
  builder.vars([builder.variableDeclarator(name, value)]),
69
64
  context
70
- )
65
+ ),
71
66
  })
72
67
  );
73
68
  });
@@ -90,7 +85,7 @@ module.exports = function migrator(elNode, context) {
90
85
  child.addAttribute({ name: name, value: value });
91
86
  }
92
87
  }
93
- }
88
+ },
94
89
  });
95
90
 
96
91
  templateWalker.walk(context.root);
@@ -4,9 +4,6 @@ module.exports = function migrator(oldNode, context) {
4
4
  const attributes = oldNode.attributes;
5
5
  const argument = oldNode.argument;
6
6
 
7
- context.deprecate(
8
- 'The "<unless(x)>" tag is deprecated. Please use "<if(!x)>" instead. See: https://github.com/marko-js/marko/wiki/Deprecation:-unless-tag'
9
- );
10
7
  if (!argument) {
11
8
  context.addError(
12
9
  "Invalid <unless> tag. Argument is missing. Example; <unless(foo === true)>"
@@ -15,7 +15,7 @@ module.exports = function addIdScopedAttr(context, el, attrValue) {
15
15
  );
16
16
  }
17
17
  }
18
- }
18
+ },
19
19
  });
20
20
  walker.walk(templateRoot);
21
21
  };
@@ -5,18 +5,18 @@ module.exports = function importTag(importIdentifier, context) {
5
5
  const builder = context.builder;
6
6
  const migrateImports = (context._migrateImports = context._migrateImports || {
7
7
  identifiers: {},
8
- paths: {}
8
+ paths: {},
9
9
  });
10
10
  const isImportedAsTag = importIdentifier[0] === "<";
11
11
 
12
12
  // Create a camelcased tagName identifier based off of the matched file name.
13
13
  // Replace any invalid JS chars (We don't need to worry about reserved words because of camelcase).
14
- const createTagName = fileName =>
14
+ const createTagName = (fileName) =>
15
15
  camelCase(fileName, {
16
- pascalCase: true
16
+ pascalCase: true,
17
17
  }).replace(/^[^$A-Z_]|[^0-9A-Z_$]/gi, "_");
18
18
 
19
- const getIdentifierName = importIdentifier => {
19
+ const getIdentifierName = (importIdentifier) => {
20
20
  let fileName;
21
21
  if (isImportedAsTag) fileName = importIdentifier.slice(1, -1);
22
22
  else {
@@ -44,7 +44,7 @@ module.exports = function importTag(importIdentifier, context) {
44
44
  } else if (node.type === "Scriptlet") {
45
45
  symbols.push(node.code);
46
46
  }
47
- }
47
+ },
48
48
  });
49
49
  walker.walk(context.root);
50
50
 
@@ -53,7 +53,7 @@ module.exports = function importTag(importIdentifier, context) {
53
53
 
54
54
  while (
55
55
  migrateImports.identifiers[identifier] ||
56
- symbols.some(symbol => symbol.includes(identifier))
56
+ symbols.some((symbol) => symbol.includes(identifier))
57
57
  ) {
58
58
  identifier = `${requestedTagName}_${i}`;
59
59
  i++;