@rushstack/terminal 0.21.0 → 0.22.1

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 (172) hide show
  1. package/CHANGELOG.json +40 -0
  2. package/CHANGELOG.md +15 -1
  3. package/dist/tsdoc-metadata.json +1 -1
  4. package/lib-esm/AnsiEscape.js +131 -0
  5. package/lib-esm/AnsiEscape.js.map +1 -0
  6. package/lib-esm/CallbackWritable.js +27 -0
  7. package/lib-esm/CallbackWritable.js.map +1 -0
  8. package/lib-esm/Colorize.js +158 -0
  9. package/lib-esm/Colorize.js.map +1 -0
  10. package/lib-esm/ConsoleTerminalProvider.js +58 -0
  11. package/lib-esm/ConsoleTerminalProvider.js.map +1 -0
  12. package/lib-esm/DiscardStdoutTransform.js +90 -0
  13. package/lib-esm/DiscardStdoutTransform.js.map +1 -0
  14. package/lib-esm/IProblemCollector.js +4 -0
  15. package/lib-esm/IProblemCollector.js.map +1 -0
  16. package/lib-esm/ITerminal.js +4 -0
  17. package/lib-esm/ITerminal.js.map +1 -0
  18. package/lib-esm/ITerminalChunk.js +18 -0
  19. package/lib-esm/ITerminalChunk.js.map +1 -0
  20. package/lib-esm/ITerminalProvider.js +29 -0
  21. package/lib-esm/ITerminalProvider.js.map +1 -0
  22. package/lib-esm/MockWritable.js +28 -0
  23. package/lib-esm/MockWritable.js.map +1 -0
  24. package/lib-esm/NoOpTerminalProvider.js +30 -0
  25. package/lib-esm/NoOpTerminalProvider.js.map +1 -0
  26. package/lib-esm/NormalizeNewlinesTextRewriter.js +66 -0
  27. package/lib-esm/NormalizeNewlinesTextRewriter.js.map +1 -0
  28. package/lib-esm/PrefixProxyTerminalProvider.js +58 -0
  29. package/lib-esm/PrefixProxyTerminalProvider.js.map +1 -0
  30. package/lib-esm/PrintUtilities.js +146 -0
  31. package/lib-esm/PrintUtilities.js.map +1 -0
  32. package/lib-esm/ProblemCollector.js +85 -0
  33. package/lib-esm/ProblemCollector.js.map +1 -0
  34. package/lib-esm/RemoveColorsTextRewriter.js +91 -0
  35. package/lib-esm/RemoveColorsTextRewriter.js.map +1 -0
  36. package/lib-esm/SplitterTransform.js +74 -0
  37. package/lib-esm/SplitterTransform.js.map +1 -0
  38. package/lib-esm/StdioLineTransform.js +111 -0
  39. package/lib-esm/StdioLineTransform.js.map +1 -0
  40. package/lib-esm/StdioSummarizer.js +95 -0
  41. package/lib-esm/StdioSummarizer.js.map +1 -0
  42. package/lib-esm/StdioWritable.js +27 -0
  43. package/lib-esm/StdioWritable.js.map +1 -0
  44. package/lib-esm/StringBufferTerminalProvider.js +185 -0
  45. package/lib-esm/StringBufferTerminalProvider.js.map +1 -0
  46. package/lib-esm/Terminal.js +150 -0
  47. package/lib-esm/Terminal.js.map +1 -0
  48. package/lib-esm/TerminalStreamWritable.js +49 -0
  49. package/lib-esm/TerminalStreamWritable.js.map +1 -0
  50. package/lib-esm/TerminalTransform.js +53 -0
  51. package/lib-esm/TerminalTransform.js.map +1 -0
  52. package/lib-esm/TerminalWritable.js +119 -0
  53. package/lib-esm/TerminalWritable.js.map +1 -0
  54. package/lib-esm/TextRewriter.js +35 -0
  55. package/lib-esm/TextRewriter.js.map +1 -0
  56. package/lib-esm/TextRewriterTransform.js +90 -0
  57. package/lib-esm/TextRewriterTransform.js.map +1 -0
  58. package/lib-esm/index.js +38 -0
  59. package/lib-esm/index.js.map +1 -0
  60. package/package.json +30 -6
  61. /package/{lib → lib-commonjs}/AnsiEscape.js +0 -0
  62. /package/{lib → lib-commonjs}/AnsiEscape.js.map +0 -0
  63. /package/{lib → lib-commonjs}/CallbackWritable.js +0 -0
  64. /package/{lib → lib-commonjs}/CallbackWritable.js.map +0 -0
  65. /package/{lib → lib-commonjs}/Colorize.js +0 -0
  66. /package/{lib → lib-commonjs}/Colorize.js.map +0 -0
  67. /package/{lib → lib-commonjs}/ConsoleTerminalProvider.js +0 -0
  68. /package/{lib → lib-commonjs}/ConsoleTerminalProvider.js.map +0 -0
  69. /package/{lib → lib-commonjs}/DiscardStdoutTransform.js +0 -0
  70. /package/{lib → lib-commonjs}/DiscardStdoutTransform.js.map +0 -0
  71. /package/{lib → lib-commonjs}/IProblemCollector.js +0 -0
  72. /package/{lib → lib-commonjs}/IProblemCollector.js.map +0 -0
  73. /package/{lib → lib-commonjs}/ITerminal.js +0 -0
  74. /package/{lib → lib-commonjs}/ITerminal.js.map +0 -0
  75. /package/{lib → lib-commonjs}/ITerminalChunk.js +0 -0
  76. /package/{lib → lib-commonjs}/ITerminalChunk.js.map +0 -0
  77. /package/{lib → lib-commonjs}/ITerminalProvider.js +0 -0
  78. /package/{lib → lib-commonjs}/ITerminalProvider.js.map +0 -0
  79. /package/{lib → lib-commonjs}/MockWritable.js +0 -0
  80. /package/{lib → lib-commonjs}/MockWritable.js.map +0 -0
  81. /package/{lib → lib-commonjs}/NoOpTerminalProvider.js +0 -0
  82. /package/{lib → lib-commonjs}/NoOpTerminalProvider.js.map +0 -0
  83. /package/{lib → lib-commonjs}/NormalizeNewlinesTextRewriter.js +0 -0
  84. /package/{lib → lib-commonjs}/NormalizeNewlinesTextRewriter.js.map +0 -0
  85. /package/{lib → lib-commonjs}/PrefixProxyTerminalProvider.js +0 -0
  86. /package/{lib → lib-commonjs}/PrefixProxyTerminalProvider.js.map +0 -0
  87. /package/{lib → lib-commonjs}/PrintUtilities.js +0 -0
  88. /package/{lib → lib-commonjs}/PrintUtilities.js.map +0 -0
  89. /package/{lib → lib-commonjs}/ProblemCollector.js +0 -0
  90. /package/{lib → lib-commonjs}/ProblemCollector.js.map +0 -0
  91. /package/{lib → lib-commonjs}/RemoveColorsTextRewriter.js +0 -0
  92. /package/{lib → lib-commonjs}/RemoveColorsTextRewriter.js.map +0 -0
  93. /package/{lib → lib-commonjs}/SplitterTransform.js +0 -0
  94. /package/{lib → lib-commonjs}/SplitterTransform.js.map +0 -0
  95. /package/{lib → lib-commonjs}/StdioLineTransform.js +0 -0
  96. /package/{lib → lib-commonjs}/StdioLineTransform.js.map +0 -0
  97. /package/{lib → lib-commonjs}/StdioSummarizer.js +0 -0
  98. /package/{lib → lib-commonjs}/StdioSummarizer.js.map +0 -0
  99. /package/{lib → lib-commonjs}/StdioWritable.js +0 -0
  100. /package/{lib → lib-commonjs}/StdioWritable.js.map +0 -0
  101. /package/{lib → lib-commonjs}/StringBufferTerminalProvider.js +0 -0
  102. /package/{lib → lib-commonjs}/StringBufferTerminalProvider.js.map +0 -0
  103. /package/{lib → lib-commonjs}/Terminal.js +0 -0
  104. /package/{lib → lib-commonjs}/Terminal.js.map +0 -0
  105. /package/{lib → lib-commonjs}/TerminalStreamWritable.js +0 -0
  106. /package/{lib → lib-commonjs}/TerminalStreamWritable.js.map +0 -0
  107. /package/{lib → lib-commonjs}/TerminalTransform.js +0 -0
  108. /package/{lib → lib-commonjs}/TerminalTransform.js.map +0 -0
  109. /package/{lib → lib-commonjs}/TerminalWritable.js +0 -0
  110. /package/{lib → lib-commonjs}/TerminalWritable.js.map +0 -0
  111. /package/{lib → lib-commonjs}/TextRewriter.js +0 -0
  112. /package/{lib → lib-commonjs}/TextRewriter.js.map +0 -0
  113. /package/{lib → lib-commonjs}/TextRewriterTransform.js +0 -0
  114. /package/{lib → lib-commonjs}/TextRewriterTransform.js.map +0 -0
  115. /package/{lib → lib-commonjs}/index.js +0 -0
  116. /package/{lib → lib-commonjs}/index.js.map +0 -0
  117. /package/{lib → lib-dts}/AnsiEscape.d.ts +0 -0
  118. /package/{lib → lib-dts}/AnsiEscape.d.ts.map +0 -0
  119. /package/{lib → lib-dts}/CallbackWritable.d.ts +0 -0
  120. /package/{lib → lib-dts}/CallbackWritable.d.ts.map +0 -0
  121. /package/{lib → lib-dts}/Colorize.d.ts +0 -0
  122. /package/{lib → lib-dts}/Colorize.d.ts.map +0 -0
  123. /package/{lib → lib-dts}/ConsoleTerminalProvider.d.ts +0 -0
  124. /package/{lib → lib-dts}/ConsoleTerminalProvider.d.ts.map +0 -0
  125. /package/{lib → lib-dts}/DiscardStdoutTransform.d.ts +0 -0
  126. /package/{lib → lib-dts}/DiscardStdoutTransform.d.ts.map +0 -0
  127. /package/{lib → lib-dts}/IProblemCollector.d.ts +0 -0
  128. /package/{lib → lib-dts}/IProblemCollector.d.ts.map +0 -0
  129. /package/{lib → lib-dts}/ITerminal.d.ts +0 -0
  130. /package/{lib → lib-dts}/ITerminal.d.ts.map +0 -0
  131. /package/{lib → lib-dts}/ITerminalChunk.d.ts +0 -0
  132. /package/{lib → lib-dts}/ITerminalChunk.d.ts.map +0 -0
  133. /package/{lib → lib-dts}/ITerminalProvider.d.ts +0 -0
  134. /package/{lib → lib-dts}/ITerminalProvider.d.ts.map +0 -0
  135. /package/{lib → lib-dts}/MockWritable.d.ts +0 -0
  136. /package/{lib → lib-dts}/MockWritable.d.ts.map +0 -0
  137. /package/{lib → lib-dts}/NoOpTerminalProvider.d.ts +0 -0
  138. /package/{lib → lib-dts}/NoOpTerminalProvider.d.ts.map +0 -0
  139. /package/{lib → lib-dts}/NormalizeNewlinesTextRewriter.d.ts +0 -0
  140. /package/{lib → lib-dts}/NormalizeNewlinesTextRewriter.d.ts.map +0 -0
  141. /package/{lib → lib-dts}/PrefixProxyTerminalProvider.d.ts +0 -0
  142. /package/{lib → lib-dts}/PrefixProxyTerminalProvider.d.ts.map +0 -0
  143. /package/{lib → lib-dts}/PrintUtilities.d.ts +0 -0
  144. /package/{lib → lib-dts}/PrintUtilities.d.ts.map +0 -0
  145. /package/{lib → lib-dts}/ProblemCollector.d.ts +0 -0
  146. /package/{lib → lib-dts}/ProblemCollector.d.ts.map +0 -0
  147. /package/{lib → lib-dts}/RemoveColorsTextRewriter.d.ts +0 -0
  148. /package/{lib → lib-dts}/RemoveColorsTextRewriter.d.ts.map +0 -0
  149. /package/{lib → lib-dts}/SplitterTransform.d.ts +0 -0
  150. /package/{lib → lib-dts}/SplitterTransform.d.ts.map +0 -0
  151. /package/{lib → lib-dts}/StdioLineTransform.d.ts +0 -0
  152. /package/{lib → lib-dts}/StdioLineTransform.d.ts.map +0 -0
  153. /package/{lib → lib-dts}/StdioSummarizer.d.ts +0 -0
  154. /package/{lib → lib-dts}/StdioSummarizer.d.ts.map +0 -0
  155. /package/{lib → lib-dts}/StdioWritable.d.ts +0 -0
  156. /package/{lib → lib-dts}/StdioWritable.d.ts.map +0 -0
  157. /package/{lib → lib-dts}/StringBufferTerminalProvider.d.ts +0 -0
  158. /package/{lib → lib-dts}/StringBufferTerminalProvider.d.ts.map +0 -0
  159. /package/{lib → lib-dts}/Terminal.d.ts +0 -0
  160. /package/{lib → lib-dts}/Terminal.d.ts.map +0 -0
  161. /package/{lib → lib-dts}/TerminalStreamWritable.d.ts +0 -0
  162. /package/{lib → lib-dts}/TerminalStreamWritable.d.ts.map +0 -0
  163. /package/{lib → lib-dts}/TerminalTransform.d.ts +0 -0
  164. /package/{lib → lib-dts}/TerminalTransform.d.ts.map +0 -0
  165. /package/{lib → lib-dts}/TerminalWritable.d.ts +0 -0
  166. /package/{lib → lib-dts}/TerminalWritable.d.ts.map +0 -0
  167. /package/{lib → lib-dts}/TextRewriter.d.ts +0 -0
  168. /package/{lib → lib-dts}/TextRewriter.d.ts.map +0 -0
  169. /package/{lib → lib-dts}/TextRewriterTransform.d.ts +0 -0
  170. /package/{lib → lib-dts}/TextRewriterTransform.d.ts.map +0 -0
  171. /package/{lib → lib-dts}/index.d.ts +0 -0
  172. /package/{lib → lib-dts}/index.d.ts.map +0 -0
@@ -0,0 +1,38 @@
1
+ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2
+ // See LICENSE in the project root for license information.
3
+ /// <reference types="node" preserve="true" />
4
+ /**
5
+ * This library implements a system for processing human readable text that
6
+ * will be output by console applications.
7
+ *
8
+ * @remarks
9
+ * See the {@link TerminalWritable} documentation for an overview of the major concepts.
10
+ *
11
+ * @packageDocumentation
12
+ */
13
+ export { CallbackWritable } from './CallbackWritable';
14
+ export { DiscardStdoutTransform } from './DiscardStdoutTransform';
15
+ export { TerminalChunkKind } from './ITerminalChunk';
16
+ export { MockWritable } from './MockWritable';
17
+ export { NormalizeNewlinesTextRewriter } from './NormalizeNewlinesTextRewriter';
18
+ export { DEFAULT_CONSOLE_WIDTH, PrintUtilities } from './PrintUtilities';
19
+ export { RemoveColorsTextRewriter } from './RemoveColorsTextRewriter';
20
+ export { SplitterTransform } from './SplitterTransform';
21
+ export { StderrLineTransform } from './StdioLineTransform';
22
+ export { StdioSummarizer } from './StdioSummarizer';
23
+ export { StdioWritable } from './StdioWritable';
24
+ export { TerminalTransform } from './TerminalTransform';
25
+ export { TerminalWritable } from './TerminalWritable';
26
+ export { TextRewriter } from './TextRewriter';
27
+ export { TextRewriterTransform } from './TextRewriterTransform';
28
+ export { AnsiEscape } from './AnsiEscape';
29
+ export { Terminal } from './Terminal';
30
+ export { Colorize } from './Colorize';
31
+ export { TerminalProviderSeverity } from './ITerminalProvider';
32
+ export { ConsoleTerminalProvider } from './ConsoleTerminalProvider';
33
+ export { StringBufferTerminalProvider } from './StringBufferTerminalProvider';
34
+ export { PrefixProxyTerminalProvider } from './PrefixProxyTerminalProvider';
35
+ export { NoOpTerminalProvider } from './NoOpTerminalProvider';
36
+ export { TerminalStreamWritable } from './TerminalStreamWritable';
37
+ export { ProblemCollector } from './ProblemCollector';
38
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,2DAA2D;AAE3D,8CAA8C;AAE9C;;;;;;;;GAQG;AAEH,OAAO,EAAiC,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACrF,OAAO,EAAuC,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACvG,OAAO,EAAE,iBAAiB,EAAuB,MAAM,kBAAkB,CAAC;AAC1E,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAEL,6BAA6B,EAC9B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,qBAAqB,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAkC,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxF,OAAO,EAAmC,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAC5F,OAAO,EAAgC,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAkC,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxF,OAAO,EAAiC,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACrF,OAAO,EAA0B,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACtE,OAAO,EAAsC,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AACpG,OAAO,EAAE,UAAU,EAA0C,MAAM,cAAc,CAAC;AAElF,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAA0B,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AACvF,OAAO,EAAE,uBAAuB,EAAwC,MAAM,2BAA2B,CAAC;AAC1G,OAAO,EACL,4BAA4B,EAM7B,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,2BAA2B,EAK5B,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAuC,MAAM,0BAA0B,CAAC;AACvG,OAAO,EAAE,gBAAgB,EAAiC,MAAM,oBAAoB,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\n/// <reference types=\"node\" preserve=\"true\" />\n\n/**\n * This library implements a system for processing human readable text that\n * will be output by console applications.\n *\n * @remarks\n * See the {@link TerminalWritable} documentation for an overview of the major concepts.\n *\n * @packageDocumentation\n */\n\nexport { type ICallbackWritableOptions, CallbackWritable } from './CallbackWritable';\nexport { type IDiscardStdoutTransformOptions, DiscardStdoutTransform } from './DiscardStdoutTransform';\nexport { TerminalChunkKind, type ITerminalChunk } from './ITerminalChunk';\nexport { MockWritable } from './MockWritable';\nexport {\n type INormalizeNewlinesTextRewriterOptions,\n NormalizeNewlinesTextRewriter\n} from './NormalizeNewlinesTextRewriter';\nexport { DEFAULT_CONSOLE_WIDTH, PrintUtilities } from './PrintUtilities';\nexport { RemoveColorsTextRewriter } from './RemoveColorsTextRewriter';\nexport { type ISplitterTransformOptions, SplitterTransform } from './SplitterTransform';\nexport { type IStdioLineTransformOptions, StderrLineTransform } from './StdioLineTransform';\nexport { type IStdioSummarizerOptions, StdioSummarizer } from './StdioSummarizer';\nexport { StdioWritable } from './StdioWritable';\nexport { type ITerminalTransformOptions, TerminalTransform } from './TerminalTransform';\nexport { type ITerminalWritableOptions, TerminalWritable } from './TerminalWritable';\nexport { type TextRewriterState, TextRewriter } from './TextRewriter';\nexport { type ITextRewriterTransformOptions, TextRewriterTransform } from './TextRewriterTransform';\nexport { AnsiEscape, type IAnsiEscapeConvertForTestsOptions } from './AnsiEscape';\nexport type { ITerminal, TerminalWriteParameters, ITerminalWriteOptions } from './ITerminal';\nexport { Terminal } from './Terminal';\nexport { Colorize } from './Colorize';\nexport { type ITerminalProvider, TerminalProviderSeverity } from './ITerminalProvider';\nexport { ConsoleTerminalProvider, type IConsoleTerminalProviderOptions } from './ConsoleTerminalProvider';\nexport {\n StringBufferTerminalProvider,\n type IStringBufferOutputOptions,\n type IAllStringBufferOutput,\n type IOutputChunk,\n type IStringBufferOutputChunksOptions,\n type TerminalProviderSeverityName\n} from './StringBufferTerminalProvider';\nexport {\n PrefixProxyTerminalProvider,\n type IPrefixProxyTerminalProviderOptions,\n type IDynamicPrefixProxyTerminalProviderOptions,\n type IPrefixProxyTerminalProviderOptionsBase,\n type IStaticPrefixProxyTerminalProviderOptions\n} from './PrefixProxyTerminalProvider';\nexport { NoOpTerminalProvider } from './NoOpTerminalProvider';\nexport { TerminalStreamWritable, type ITerminalStreamWritableOptions } from './TerminalStreamWritable';\nexport { ProblemCollector, type IProblemCollectorOptions } from './ProblemCollector';\nexport type { IProblemCollector } from './IProblemCollector';\n"]}
package/package.json CHANGED
@@ -1,9 +1,32 @@
1
1
  {
2
2
  "name": "@rushstack/terminal",
3
- "version": "0.21.0",
3
+ "version": "0.22.1",
4
4
  "description": "User interface primitives for console applications",
5
- "main": "lib/index.js",
6
- "typings": "dist/terminal.d.ts",
5
+ "main": "./lib-commonjs/index.js",
6
+ "module": "./lib-esm/index.js",
7
+ "types": "./dist/terminal.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/terminal.d.ts",
11
+ "node": "./lib-commonjs/index.js",
12
+ "import": "./lib-esm/index.js",
13
+ "require": "./lib-commonjs/index.js"
14
+ },
15
+ "./lib/*": {
16
+ "types": "./lib-dts/*.d.ts",
17
+ "node": "./lib-commonjs/*.js",
18
+ "import": "./lib-esm/*.js",
19
+ "require": "./lib-commonjs/*.js"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "typesVersions": {
24
+ "*": {
25
+ "lib/*": [
26
+ "lib-dts/*"
27
+ ]
28
+ }
29
+ },
7
30
  "license": "MIT",
8
31
  "repository": {
9
32
  "url": "https://github.com/microsoft/rushstack.git",
@@ -12,11 +35,11 @@
12
35
  },
13
36
  "dependencies": {
14
37
  "supports-color": "~8.1.1",
15
- "@rushstack/node-core-library": "5.19.1",
16
- "@rushstack/problem-matcher": "0.1.1"
38
+ "@rushstack/node-core-library": "5.20.1",
39
+ "@rushstack/problem-matcher": "0.2.1"
17
40
  },
18
41
  "devDependencies": {
19
- "@rushstack/heft": "1.1.7",
42
+ "@rushstack/heft": "1.2.0",
20
43
  "@types/supports-color": "8.1.3",
21
44
  "eslint": "~9.37.0",
22
45
  "decoupled-local-node-rig": "1.0.0"
@@ -29,6 +52,7 @@
29
52
  "optional": true
30
53
  }
31
54
  },
55
+ "sideEffects": false,
32
56
  "scripts": {
33
57
  "build": "heft build --clean",
34
58
  "_phase:build": "heft run --only build -- --clean",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes