testeranto 0.197.0 → 0.198.0

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 (301) hide show
  1. package/.vscode/settings.json +7 -2
  2. package/design-editor/DesignEditor.tsx +9 -5
  3. package/dist/common/design-editor/DesignEditor.js +8 -5
  4. package/dist/common/src/App.js +29 -5
  5. package/dist/common/src/Node.js +3 -2
  6. package/dist/common/src/PM/main.js +1 -1
  7. package/dist/common/src/Pure.js +2 -2
  8. package/dist/common/src/Web.js +2 -2
  9. package/dist/common/src/components/DesignEditorPage.js +55 -19
  10. package/dist/common/src/lib/BaseGiven.js +99 -0
  11. package/dist/common/src/lib/BaseSuite.test/mock.js +9 -5
  12. package/dist/common/src/lib/BaseThen.js +64 -0
  13. package/dist/common/src/lib/BaseWhen.js +45 -0
  14. package/dist/common/src/lib/Tiposkripto.js +149 -0
  15. package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
  16. package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  17. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
  18. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
  19. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
  20. package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
  21. package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
  22. package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
  23. package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
  24. package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
  25. package/dist/common/src/lib/mocks.test.js +10 -8
  26. package/dist/common/src/run.js +15 -4
  27. package/dist/common/testeranto.config.js +12 -36
  28. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  29. package/dist/module/design-editor/DesignEditor.js +8 -5
  30. package/dist/module/src/App.js +29 -5
  31. package/dist/module/src/Node.js +3 -2
  32. package/dist/module/src/PM/main.js +1 -1
  33. package/dist/module/src/Pure.js +2 -2
  34. package/dist/module/src/Web.js +2 -2
  35. package/dist/module/src/components/DesignEditorPage.js +55 -19
  36. package/dist/module/src/lib/BaseGiven.js +95 -0
  37. package/dist/module/src/lib/BaseSuite.test/mock.js +6 -2
  38. package/dist/module/src/lib/BaseThen.js +60 -0
  39. package/dist/module/src/lib/BaseWhen.js +41 -0
  40. package/dist/module/src/lib/Tiposkripto.js +146 -0
  41. package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
  42. package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  43. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
  44. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
  45. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
  46. package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
  47. package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
  48. package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
  49. package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
  50. package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
  51. package/dist/module/src/lib/mocks.test.js +11 -5
  52. package/dist/module/src/run.js +15 -4
  53. package/dist/module/testeranto.config.js +12 -36
  54. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  55. package/dist/prebuild/App.js +1461 -8949
  56. package/dist/prebuild/run.mjs +25 -14
  57. package/dist/tsconfig.tsbuildinfo +1 -0
  58. package/dist/types/src/Node.d.ts +2 -2
  59. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +1 -15
  60. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +1 -15
  61. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +1 -15
  62. package/dist/types/src/Pure.d.ts +2 -2
  63. package/dist/types/src/Pure.test.d.ts +1 -58
  64. package/dist/types/src/ReportServer.test.ts/index.d.ts +1 -28
  65. package/dist/types/src/Types.d.ts +3 -1
  66. package/dist/types/src/Web.d.ts +2 -2
  67. package/dist/types/src/components/pure/AppFrame.test/index.d.ts +1 -3
  68. package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +1 -1
  69. package/dist/types/src/components/pure/ModalContent.test/index.d.ts +1 -2
  70. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +1 -1
  71. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +1 -1
  72. package/dist/types/src/lib/BaseGiven.d.ts +44 -0
  73. package/dist/types/src/lib/BaseSuite.d.ts +12 -7
  74. package/dist/types/src/lib/BaseSuite.test/mock.d.ts +3 -1
  75. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +1 -2
  76. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +1 -2
  77. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +1 -2
  78. package/dist/types/src/lib/BaseThen.d.ts +27 -0
  79. package/dist/types/src/lib/BaseWhen.d.ts +27 -0
  80. package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
  81. package/dist/types/src/lib/{core.test/MockCore.d.ts → Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
  82. package/dist/types/src/lib/{core.test/core.test.adapter.d.ts → Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
  83. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
  84. package/dist/types/src/lib/{core.test/core.test.implementation.d.ts → Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
  85. package/dist/types/src/lib/{core.test/core.test.specification.d.ts → Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
  86. package/dist/types/src/lib/{classBuilder.test/classBuilder.test.types.d.ts → Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
  87. package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +3 -1
  88. package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +1 -1
  89. package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +1 -1
  90. package/dist/types/src/lib/abstractBase.test/index.d.ts +1 -2
  91. package/dist/types/src/lib/abstractBase.test/types.d.ts +3 -3
  92. package/dist/types/src/lib/index.d.ts +1 -1
  93. package/dist/types/src/lib/mocks.test.d.ts +0 -2
  94. package/dist/types/src/lib/pmProxy.test/index.d.ts +1 -2
  95. package/dist/types/src/lib/types.d.ts +3 -1
  96. package/dist/types/src/mothership/test.d.ts +1 -18
  97. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  98. package/package.json +4 -4
  99. package/src/App.tsx +27 -5
  100. package/src/Node.ts +3 -2
  101. package/src/PM/main.ts +1 -1
  102. package/src/Pure.ts +3 -2
  103. package/src/Types.ts +5 -3
  104. package/src/Web.ts +2 -2
  105. package/src/components/DesignEditorPage.tsx +54 -21
  106. package/src/lib/BaseGiven.ts +193 -0
  107. package/src/lib/BaseSuite.test/mock.ts +9 -2
  108. package/src/lib/BaseSuite.ts +14 -1
  109. package/src/lib/BaseThen.ts +108 -0
  110. package/src/lib/BaseWhen.ts +91 -0
  111. package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
  112. package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
  113. package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
  114. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
  115. package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
  116. package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
  117. package/src/lib/Tiposkripto.ts +325 -0
  118. package/src/lib/abstractBase.test/MockGiven.ts +12 -2
  119. package/src/lib/abstractBase.test/MockThen.ts +7 -2
  120. package/src/lib/abstractBase.test/MockWhen.ts +10 -2
  121. package/src/lib/abstractBase.test/adapter.ts +20 -6
  122. package/src/lib/abstractBase.test/implementation.ts +6 -6
  123. package/src/lib/abstractBase.test/types.ts +3 -3
  124. package/src/lib/index.ts +9 -3
  125. package/src/lib/mocks.test.ts +10 -9
  126. package/src/lib/types.ts +3 -1
  127. package/src/run.ts +19 -4
  128. package/testeranto/App.js +1461 -8949
  129. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1121 -9
  130. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +979 -8
  131. package/testeranto/bundles/{pure/core/chunk-62UVCSQC.mjs → web/core/src/lib/BaseSuite.test/web.test.mjs} +721 -431
  132. package/testeranto/metafiles/node/core.json +264 -2180
  133. package/testeranto/metafiles/pure/core.json +147 -288
  134. package/testeranto/metafiles/web/core.json +16949 -18
  135. package/testeranto/reports/core/config.json +8 -40
  136. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +8 -13
  137. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +66 -2
  138. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
  139. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +16 -0
  140. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +68 -0
  141. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +56 -0
  142. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -3
  143. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +2 -0
  144. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
  145. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +16 -0
  146. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +88 -0
  147. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +45 -0
  148. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -3
  149. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +2 -0
  150. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
  151. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +17 -0
  152. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +57 -0
  153. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +99 -0
  154. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +1 -0
  155. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
  156. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +11 -16
  157. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +11 -16
  158. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -2
  159. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +15 -0
  160. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +29 -0
  161. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +56 -0
  162. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
  163. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +17 -0
  164. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
  165. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
  166. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
  167. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
  168. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +60 -82
  169. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +8 -13
  170. package/testeranto/reports/core/summary.json +23 -36
  171. package/testeranto.config.ts +14 -41
  172. package/tsc.log +274 -455
  173. package/dist/common/src/lib/abstractBase.js +0 -196
  174. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -25
  175. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
  176. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
  177. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
  178. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
  179. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
  180. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
  181. package/dist/common/src/lib/basebuilder.js +0 -88
  182. package/dist/common/src/lib/classBuilder.js +0 -36
  183. package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
  184. package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
  185. package/dist/common/src/lib/classBuilder.test/classBuilder.test.types.js +0 -2
  186. package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
  187. package/dist/common/src/lib/core.js +0 -45
  188. package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
  189. package/dist/common/src/lib/core.test/core.test.js +0 -63
  190. package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
  191. package/dist/common/src/lib/core.test/core.test.types.js +0 -2
  192. package/dist/module/src/lib/abstractBase.js +0 -190
  193. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -22
  194. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
  195. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
  196. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
  197. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
  198. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
  199. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
  200. package/dist/module/src/lib/basebuilder.js +0 -84
  201. package/dist/module/src/lib/classBuilder.js +0 -32
  202. package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
  203. package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
  204. package/dist/module/src/lib/classBuilder.test/classBuilder.test.types.js +0 -1
  205. package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
  206. package/dist/module/src/lib/core.js +0 -42
  207. package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
  208. package/dist/module/src/lib/core.test/core.test.js +0 -58
  209. package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
  210. package/dist/module/src/lib/core.test/core.test.types.js +0 -1
  211. package/dist/types/src/lib/abstractBase.d.ts +0 -70
  212. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
  213. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
  214. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
  215. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
  216. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
  217. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
  218. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
  219. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
  220. package/dist/types/src/lib/basebuilder.d.ts +0 -23
  221. package/dist/types/src/lib/classBuilder.d.ts +0 -15
  222. package/dist/types/src/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
  223. package/dist/types/src/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
  224. package/dist/types/src/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
  225. package/dist/types/src/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
  226. package/dist/types/src/lib/classBuilder.test/mock.d.ts +0 -14
  227. package/dist/types/src/lib/core.d.ts +0 -12
  228. package/dist/types/src/lib/core.test/core.test.d.ts +0 -3
  229. package/dist/types/src/lib/core.test/core.test.types.d.ts +0 -46
  230. package/src/lib/abstractBase.ts +0 -351
  231. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -29
  232. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -139
  233. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
  234. package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
  235. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
  236. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
  237. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
  238. package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
  239. package/src/lib/basebuilder.ts +0 -187
  240. package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
  241. package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
  242. package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
  243. package/src/lib/classBuilder.test/mock.ts +0 -83
  244. package/src/lib/classBuilder.ts +0 -120
  245. package/src/lib/core.test/core.test.implementation.ts +0 -155
  246. package/src/lib/core.test/core.test.specification.ts +0 -113
  247. package/src/lib/core.test/core.test.ts +0 -72
  248. package/src/lib/core.test/core.test.types.ts +0 -68
  249. package/src/lib/core.ts +0 -125
  250. package/testeranto/bundles/node/core/chunk-4CSH4UJE.mjs +0 -872
  251. package/testeranto/bundles/node/core/chunk-4JTDLQVA.mjs +0 -253
  252. package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +0 -70
  253. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -243
  254. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  255. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -494
  256. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4755
  257. package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -410
  258. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -241
  259. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
  260. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
  261. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
  262. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
  263. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
  264. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -10
  265. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
  266. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -6
  267. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  268. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  269. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
  270. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -42
  271. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -10
  272. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
  273. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -42
  274. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
  275. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -3
  276. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
  277. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
  278. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
  279. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
  280. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
  281. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
  282. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
  283. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
  284. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -88
  285. package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
  286. package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  287. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
  288. package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
  289. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -45
  290. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -152
  291. package/testeranto/reportsweb_build_errors +0 -546
  292. /package/dist/common/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  293. /package/dist/module/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  294. /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/FeaturesReporterView.test/index/web}/lint_errors.txt +0 -0
  295. /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.node/node → components/pure/FeaturesReporterView.test/index/web}/message.txt +0 -0
  296. /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.pure/pure → components/pure/ProjectPageView.test/index/web}/message.txt +0 -0
  297. /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/TestPageView.test/index/web}/message.txt +0 -0
  298. /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.node/node/stderr.log → BaseSuite.test/web.test/web/lint_errors.txt} +0 -0
  299. /package/testeranto/reports/core/src/lib/{core.test/core.test/node → BaseSuite.test/web.test/web}/message.txt +0 -0
  300. /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.pure/pure/exit.log → TipoSkripto.test/TipoSkripto/node/lint_errors.txt} +0 -0
  301. /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
@@ -1,546 +0,0 @@
1
- {
2
- "errors": [
3
- {
4
- "id": "",
5
- "location": {
6
- "column": 23,
7
- "file": "node_modules/testeranto-react/src/react-dom/jsx/web.ts",
8
- "length": 17,
9
- "line": 1,
10
- "lineText": "import Testeranto from \"../../../Web.js\";",
11
- "namespace": "",
12
- "suggestion": ""
13
- },
14
- "notes": [],
15
- "pluginName": "",
16
- "text": "Could not resolve \"../../../Web.js\""
17
- }
18
- ],
19
- "warnings": [
20
- {
21
- "detail": {
22
- "deprecation": true,
23
- "stack": "node_modules/bootstrap/scss/_functions.scss 11:30 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
24
- },
25
- "id": "",
26
- "location": {
27
- "column": 29,
28
- "file": "node_modules/bootstrap/scss/_functions.scss",
29
- "length": 0,
30
- "line": 10,
31
- "lineText": "unit($num)",
32
- "namespace": "file",
33
- "suggestion": ""
34
- },
35
- "notes": [
36
- {
37
- "location": {
38
- "column": 7,
39
- "file": "src/components/pure/TestPageView.test/index.tsx",
40
- "length": 21,
41
- "line": 8,
42
- "lineText": "import \"./../../../App.scss\";",
43
- "namespace": "",
44
- "suggestion": ""
45
- },
46
- "text": "The plugin \"sass-plugin\" was triggered by this import"
47
- }
48
- ],
49
- "pluginName": "sass-plugin",
50
- "text": "Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.\nUse math.unit instead.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
51
- },
52
- {
53
- "detail": {
54
- "deprecation": true,
55
- "stack": "node_modules/bootstrap/scss/_functions.scss 11:51 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
56
- },
57
- "id": "",
58
- "location": {
59
- "column": 50,
60
- "file": "node_modules/bootstrap/scss/_functions.scss",
61
- "length": 0,
62
- "line": 10,
63
- "lineText": "unit($prev-num)",
64
- "namespace": "file",
65
- "suggestion": ""
66
- },
67
- "notes": [
68
- {
69
- "location": {
70
- "column": 7,
71
- "file": "src/components/pure/TestPageView.test/index.tsx",
72
- "length": 21,
73
- "line": 8,
74
- "lineText": "import \"./../../../App.scss\";",
75
- "namespace": "",
76
- "suggestion": ""
77
- },
78
- "text": "The plugin \"sass-plugin\" was triggered by this import"
79
- }
80
- ],
81
- "pluginName": "sass-plugin",
82
- "text": "Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.\nUse math.unit instead.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
83
- },
84
- {
85
- "detail": {
86
- "deprecation": true,
87
- "stack": "node_modules/bootstrap/scss/_functions.scss 37:11 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
88
- },
89
- "id": "",
90
- "location": {
91
- "column": 10,
92
- "file": "node_modules/bootstrap/scss/_functions.scss",
93
- "length": 0,
94
- "line": 36,
95
- "lineText": "red($value)",
96
- "namespace": "file",
97
- "suggestion": ""
98
- },
99
- "notes": [
100
- {
101
- "location": {
102
- "column": 7,
103
- "file": "src/components/pure/TestPageView.test/index.tsx",
104
- "length": 21,
105
- "line": 8,
106
- "lineText": "import \"./../../../App.scss\";",
107
- "namespace": "",
108
- "suggestion": ""
109
- },
110
- "text": "The plugin \"sass-plugin\" was triggered by this import"
111
- }
112
- ],
113
- "pluginName": "sass-plugin",
114
- "text": "red() is deprecated. Suggestion:\n\ncolor.channel($color, \"red\", $space: rgb)\n\nMore info: https://sass-lang.com/d/color-functions"
115
- },
116
- {
117
- "detail": {
118
- "deprecation": true,
119
- "stack": "node_modules/bootstrap/scss/_functions.scss 37:24 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
120
- },
121
- "id": "",
122
- "location": {
123
- "column": 23,
124
- "file": "node_modules/bootstrap/scss/_functions.scss",
125
- "length": 0,
126
- "line": 36,
127
- "lineText": "green($value)",
128
- "namespace": "file",
129
- "suggestion": ""
130
- },
131
- "notes": [
132
- {
133
- "location": {
134
- "column": 7,
135
- "file": "src/components/pure/TestPageView.test/index.tsx",
136
- "length": 21,
137
- "line": 8,
138
- "lineText": "import \"./../../../App.scss\";",
139
- "namespace": "",
140
- "suggestion": ""
141
- },
142
- "text": "The plugin \"sass-plugin\" was triggered by this import"
143
- }
144
- ],
145
- "pluginName": "sass-plugin",
146
- "text": "green() is deprecated. Suggestion:\n\ncolor.channel($color, \"green\", $space: rgb)\n\nMore info: https://sass-lang.com/d/color-functions"
147
- },
148
- {
149
- "detail": {
150
- "deprecation": true,
151
- "stack": "node_modules/bootstrap/scss/_functions.scss 185:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
152
- },
153
- "id": "",
154
- "location": {
155
- "column": 9,
156
- "file": "node_modules/bootstrap/scss/_functions.scss",
157
- "length": 0,
158
- "line": 184,
159
- "lineText": "red($color)",
160
- "namespace": "file",
161
- "suggestion": ""
162
- },
163
- "notes": [
164
- {
165
- "location": {
166
- "column": 7,
167
- "file": "src/components/pure/TestPageView.test/index.tsx",
168
- "length": 21,
169
- "line": 8,
170
- "lineText": "import \"./../../../App.scss\";",
171
- "namespace": "",
172
- "suggestion": ""
173
- },
174
- "text": "The plugin \"sass-plugin\" was triggered by this import"
175
- }
176
- ],
177
- "pluginName": "sass-plugin",
178
- "text": "red() is deprecated. Suggestion:\n\ncolor.channel($color, \"red\", $space: rgb)\n\nMore info: https://sass-lang.com/d/color-functions"
179
- },
180
- {
181
- "detail": {
182
- "deprecation": true,
183
- "stack": "node_modules/bootstrap/scss/_functions.scss 186:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
184
- },
185
- "id": "",
186
- "location": {
187
- "column": 9,
188
- "file": "node_modules/bootstrap/scss/_functions.scss",
189
- "length": 0,
190
- "line": 185,
191
- "lineText": "green($color)",
192
- "namespace": "file",
193
- "suggestion": ""
194
- },
195
- "notes": [
196
- {
197
- "location": {
198
- "column": 7,
199
- "file": "src/components/pure/TestPageView.test/index.tsx",
200
- "length": 21,
201
- "line": 8,
202
- "lineText": "import \"./../../../App.scss\";",
203
- "namespace": "",
204
- "suggestion": ""
205
- },
206
- "text": "The plugin \"sass-plugin\" was triggered by this import"
207
- }
208
- ],
209
- "pluginName": "sass-plugin",
210
- "text": "green() is deprecated. Suggestion:\n\ncolor.channel($color, \"green\", $space: rgb)\n\nMore info: https://sass-lang.com/d/color-functions"
211
- },
212
- {
213
- "detail": {
214
- "deprecation": true,
215
- "stack": "node_modules/bootstrap/scss/_functions.scss 187:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
216
- },
217
- "id": "",
218
- "location": {
219
- "column": 9,
220
- "file": "node_modules/bootstrap/scss/_functions.scss",
221
- "length": 0,
222
- "line": 186,
223
- "lineText": "blue($color)",
224
- "namespace": "file",
225
- "suggestion": ""
226
- },
227
- "notes": [
228
- {
229
- "location": {
230
- "column": 7,
231
- "file": "src/components/pure/TestPageView.test/index.tsx",
232
- "length": 21,
233
- "line": 8,
234
- "lineText": "import \"./../../../App.scss\";",
235
- "namespace": "",
236
- "suggestion": ""
237
- },
238
- "text": "The plugin \"sass-plugin\" was triggered by this import"
239
- }
240
- ],
241
- "pluginName": "sass-plugin",
242
- "text": "blue() is deprecated. Suggestion:\n\ncolor.channel($color, \"blue\", $space: rgb)\n\nMore info: https://sass-lang.com/d/color-functions"
243
- },
244
- {
245
- "detail": {
246
- "deprecation": true,
247
- "stack": "node_modules/bootstrap/scss/_functions.scss 207:11 tint-color()\nnode_modules/bootstrap/scss/_variables.scss 79:12 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
248
- },
249
- "id": "",
250
- "location": {
251
- "column": 10,
252
- "file": "node_modules/bootstrap/scss/_functions.scss",
253
- "length": 0,
254
- "line": 206,
255
- "lineText": "mix(white, $color, $weight)",
256
- "namespace": "file",
257
- "suggestion": ""
258
- },
259
- "notes": [
260
- {
261
- "location": {
262
- "column": 7,
263
- "file": "src/components/pure/TestPageView.test/index.tsx",
264
- "length": 21,
265
- "line": 8,
266
- "lineText": "import \"./../../../App.scss\";",
267
- "namespace": "",
268
- "suggestion": ""
269
- },
270
- "text": "The plugin \"sass-plugin\" was triggered by this import"
271
- }
272
- ],
273
- "pluginName": "sass-plugin",
274
- "text": "Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.\nUse color.mix instead.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
275
- },
276
- {
277
- "detail": {
278
- "deprecation": true,
279
- "stack": "node_modules/bootstrap/scss/_functions.scss 212:11 shade-color()\nnode_modules/bootstrap/scss/_variables.scss 84:12 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
280
- },
281
- "id": "",
282
- "location": {
283
- "column": 10,
284
- "file": "node_modules/bootstrap/scss/_functions.scss",
285
- "length": 0,
286
- "line": 211,
287
- "lineText": "mix(black, $color, $weight)",
288
- "namespace": "file",
289
- "suggestion": ""
290
- },
291
- "notes": [
292
- {
293
- "location": {
294
- "column": 7,
295
- "file": "src/components/pure/TestPageView.test/index.tsx",
296
- "length": 21,
297
- "line": 8,
298
- "lineText": "import \"./../../../App.scss\";",
299
- "namespace": "",
300
- "suggestion": ""
301
- },
302
- "text": "The plugin \"sass-plugin\" was triggered by this import"
303
- }
304
- ],
305
- "pluginName": "sass-plugin",
306
- "text": "Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.\nUse color.mix instead.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
307
- },
308
- {
309
- "detail": {
310
- "deprecation": true,
311
- "stack": "node_modules/bootstrap/scss/_variables.scss 342:27 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
312
- },
313
- "id": "",
314
- "location": {
315
- "column": 26,
316
- "file": "node_modules/bootstrap/scss/_variables.scss",
317
- "length": 0,
318
- "line": 341,
319
- "lineText": "mix($gray-100, $white)",
320
- "namespace": "file",
321
- "suggestion": ""
322
- },
323
- "notes": [
324
- {
325
- "location": {
326
- "column": 7,
327
- "file": "src/components/pure/TestPageView.test/index.tsx",
328
- "length": 21,
329
- "line": 8,
330
- "lineText": "import \"./../../../App.scss\";",
331
- "namespace": "",
332
- "suggestion": ""
333
- },
334
- "text": "The plugin \"sass-plugin\" was triggered by this import"
335
- }
336
- ],
337
- "pluginName": "sass-plugin",
338
- "text": "Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.\nUse color.mix instead.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
339
- },
340
- {
341
- "detail": {
342
- "deprecation": true,
343
- "stack": "bootstrap/scss/bootstrap.scss 1:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
344
- },
345
- "id": "",
346
- "location": {
347
- "column": 8,
348
- "file": "node_modules/bootstrap/scss/bootstrap.scss",
349
- "length": 0,
350
- "line": 0,
351
- "lineText": "\"mixins/banner\"",
352
- "namespace": "file",
353
- "suggestion": ""
354
- },
355
- "notes": [
356
- {
357
- "location": {
358
- "column": 7,
359
- "file": "src/components/pure/TestPageView.test/index.tsx",
360
- "length": 21,
361
- "line": 8,
362
- "lineText": "import \"./../../../App.scss\";",
363
- "namespace": "",
364
- "suggestion": ""
365
- },
366
- "text": "The plugin \"sass-plugin\" was triggered by this import"
367
- }
368
- ],
369
- "pluginName": "sass-plugin",
370
- "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
371
- },
372
- {
373
- "detail": {
374
- "deprecation": true,
375
- "stack": "bootstrap/scss/bootstrap.scss 7:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
376
- },
377
- "id": "",
378
- "location": {
379
- "column": 8,
380
- "file": "node_modules/bootstrap/scss/bootstrap.scss",
381
- "length": 0,
382
- "line": 6,
383
- "lineText": "\"functions\"",
384
- "namespace": "file",
385
- "suggestion": ""
386
- },
387
- "notes": [
388
- {
389
- "location": {
390
- "column": 7,
391
- "file": "src/components/pure/TestPageView.test/index.tsx",
392
- "length": 21,
393
- "line": 8,
394
- "lineText": "import \"./../../../App.scss\";",
395
- "namespace": "",
396
- "suggestion": ""
397
- },
398
- "text": "The plugin \"sass-plugin\" was triggered by this import"
399
- }
400
- ],
401
- "pluginName": "sass-plugin",
402
- "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
403
- },
404
- {
405
- "detail": {
406
- "deprecation": true,
407
- "stack": "testeranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
408
- },
409
- "id": "",
410
- "location": {
411
- "column": 8,
412
- "file": "node_modules/testeranto-stilo/src/style.scss",
413
- "length": 0,
414
- "line": 0,
415
- "lineText": "\"bootstrap/scss/bootstrap.scss\"",
416
- "namespace": "file",
417
- "suggestion": ""
418
- },
419
- "notes": [
420
- {
421
- "location": {
422
- "column": 7,
423
- "file": "src/components/pure/TestPageView.test/index.tsx",
424
- "length": 21,
425
- "line": 8,
426
- "lineText": "import \"./../../../App.scss\";",
427
- "namespace": "",
428
- "suggestion": ""
429
- },
430
- "text": "The plugin \"sass-plugin\" was triggered by this import"
431
- }
432
- ],
433
- "pluginName": "sass-plugin",
434
- "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
435
- },
436
- {
437
- "detail": {
438
- "deprecation": true,
439
- "stack": "testeranto-stilo/src/style.scss 2:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
440
- },
441
- "id": "",
442
- "location": {
443
- "column": 8,
444
- "file": "node_modules/testeranto-stilo/src/style.scss",
445
- "length": 0,
446
- "line": 1,
447
- "lineText": "\"./fonts.scss\"",
448
- "namespace": "file",
449
- "suggestion": ""
450
- },
451
- "notes": [
452
- {
453
- "location": {
454
- "column": 7,
455
- "file": "src/components/pure/TestPageView.test/index.tsx",
456
- "length": 21,
457
- "line": 8,
458
- "lineText": "import \"./../../../App.scss\";",
459
- "namespace": "",
460
- "suggestion": ""
461
- },
462
- "text": "The plugin \"sass-plugin\" was triggered by this import"
463
- }
464
- ],
465
- "pluginName": "sass-plugin",
466
- "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
467
- },
468
- {
469
- "id": "different-path-case",
470
- "location": {
471
- "column": 7,
472
- "file": "src/components/pure/ProjectPageView.tsx",
473
- "length": 18,
474
- "line": 9,
475
- "lineText": "import \"./../../App.scss\";",
476
- "namespace": "",
477
- "suggestion": ""
478
- },
479
- "notes": [],
480
- "pluginName": "",
481
- "text": "Use \"src/app.scss\" instead of \"src/App.scss\" to avoid issues with case-sensitive file systems"
482
- },
483
- {
484
- "id": "different-path-case",
485
- "location": {
486
- "column": 7,
487
- "file": "src/components/pure/TestPageView.test/index.tsx",
488
- "length": 21,
489
- "line": 8,
490
- "lineText": "import \"./../../../App.scss\";",
491
- "namespace": "",
492
- "suggestion": ""
493
- },
494
- "notes": [],
495
- "pluginName": "",
496
- "text": "Use \"src/app.scss\" instead of \"src/App.scss\" to avoid issues with case-sensitive file systems"
497
- },
498
- {
499
- "id": "",
500
- "location": {
501
- "column": 7,
502
- "file": "src/components/pure/TestPageView.test/index.tsx",
503
- "length": 21,
504
- "line": 8,
505
- "lineText": "import \"./../../../App.scss\";",
506
- "namespace": "",
507
- "suggestion": ""
508
- },
509
- "notes": [],
510
- "pluginName": "sass-plugin",
511
- "text": "sass warning: 235 repetitive deprecation warnings omitted.\nRun in verbose mode to see all warnings."
512
- },
513
- {
514
- "detail": {
515
- "deprecation": true,
516
- "stack": "src/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
517
- },
518
- "id": "",
519
- "location": {
520
- "column": 8,
521
- "file": "src/style.scss",
522
- "length": 0,
523
- "line": 1,
524
- "lineText": "\"testeranto-stilo/src/style.scss\"",
525
- "namespace": "file",
526
- "suggestion": ""
527
- },
528
- "notes": [
529
- {
530
- "location": {
531
- "column": 7,
532
- "file": "src/components/pure/TestPageView.test/index.tsx",
533
- "length": 21,
534
- "line": 8,
535
- "lineText": "import \"./../../../App.scss\";",
536
- "namespace": "",
537
- "suggestion": ""
538
- },
539
- "text": "The plugin \"sass-plugin\" was triggered by this import"
540
- }
541
- ],
542
- "pluginName": "sass-plugin",
543
- "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
544
- }
545
- ]
546
- }