@tolgee/cli 2.1.8 → 2.2.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 (29) hide show
  1. package/dist/extractor/extractor.js +11 -4
  2. package/dist/extractor/parser/extractComment.js +7 -10
  3. package/dist/extractor/parser/generalMapper.js +4 -4
  4. package/dist/extractor/parser/mergerMachine.js +42 -11
  5. package/dist/extractor/parser/tokenMergers/closingTagMerger.js +1 -1
  6. package/dist/extractor/parser/tokenMergers/commentsMerger.js +8 -5
  7. package/dist/extractor/parser/tokenMergers/stringMerger.js +5 -5
  8. package/dist/extractor/parser/tokenMergers/templateStringMerger.js +1 -1
  9. package/dist/extractor/parser/tree/getTranslateProps.js +1 -1
  10. package/dist/extractor/parserNgx/ParserNgx.js +29 -0
  11. package/dist/extractor/parserNgx/ngxMapper.js +67 -0
  12. package/dist/extractor/parserNgx/ngxTreeTransform.js +46 -0
  13. package/dist/extractor/parserNgx/rules/componentWithT.js +43 -0
  14. package/dist/extractor/parserNgx/rules/helpers/parsePipeArgs.js +26 -0
  15. package/dist/extractor/parserNgx/rules/translateFunction.js +7 -0
  16. package/dist/extractor/parserNgx/rules/translatePipe.js +57 -0
  17. package/dist/extractor/parserNgx/tokenMergers/elementMerger.js +29 -0
  18. package/dist/extractor/parserNgx/tokenMergers/pipeMerger.js +19 -0
  19. package/dist/extractor/parserNgx/tokenMergers/translateMerger.js +41 -0
  20. package/dist/extractor/parserSvelte/svelteMapper.js +2 -2
  21. package/dist/extractor/parserVue/vueMapper.js +2 -2
  22. package/dist/extractor/runner.js +11 -1
  23. package/dist/extractor/tokenizer.js +12 -6
  24. package/dist/options.js +1 -1
  25. package/extractor.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/schema.json +1 -1
  28. package/textmate/AngularHtml.tmLanguage +1 -0
  29. package/textmate/THIRD_PARTY_NOTICE +32 -0
@@ -68,4 +68,36 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
68
68
  SOFTWARE.
69
69
 
70
70
 
71
+ ---
72
+ Licensing information for the following files:
73
+ - AngularHtml.tmLanguage
74
+
75
+ Copyright for portions of project vscode-angular-html are held by [Clay Dunston, 2018]
76
+ as part of project vscode-angular-syntax. All other copyright for project
77
+ vscode-angular-html are held by [Guilherme Haschel, 2022].
78
+
79
+ MIT License
80
+
81
+ Copyright (c) 2022 Guilherme Haschel <ghaschel@gmail.com>
82
+
83
+ Permission is hereby granted, free of charge, to any person obtaining a copy
84
+ of this software and associated documentation files (the "Software"), to deal
85
+ in the Software without restriction, including without limitation the rights
86
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
87
+ copies of the Software, and to permit persons to whom the Software is
88
+ furnished to do so, subject to the following conditions:
89
+
90
+ The above copyright notice and this permission notice shall be included in all
91
+ copies or substantial portions of the Software.
92
+
93
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
94
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
95
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
96
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
97
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
98
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
99
+ SOFTWARE.
100
+
101
+
102
+
71
103
  ---