@aws/nx-plugin 0.1.6 → 0.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 (115) hide show
  1. package/LICENSE-THIRD-PARTY +114 -244
  2. package/generators.json +1 -7
  3. package/package.json +1 -1
  4. package/src/cloudscape-website/app/README.md +84 -48
  5. package/src/cloudscape-website/app/__snapshots__/generator.spec.ts.snap +157 -218
  6. package/src/cloudscape-website/app/files/app/README.md.template +44 -0
  7. package/src/cloudscape-website/app/files/app/src/layouts/App/index.tsx.template +40 -43
  8. package/src/cloudscape-website/app/files/app/src/layouts/App/navitems.ts.template +3 -3
  9. package/src/cloudscape-website/app/files/app/src/layouts/Routes/index.tsx.template +4 -6
  10. package/src/cloudscape-website/app/files/app/src/main.tsx.template +7 -10
  11. package/src/cloudscape-website/app/files/app/src/pages/Home/index.tsx.template +0 -2
  12. package/src/cloudscape-website/app/files/common/constructs/src/app/static-websites/__websiteNameKebabCase__.ts.template +13 -0
  13. package/src/cloudscape-website/app/files/common/constructs/src/{__websiteNameKebabCase__ → core}/static-website.ts.template +74 -144
  14. package/src/cloudscape-website/app/generator.js +74 -64
  15. package/src/cloudscape-website/app/generator.js.map +1 -1
  16. package/src/cloudscape-website/app/schema.d.ts +3 -4
  17. package/src/cloudscape-website/app/schema.json +1 -24
  18. package/src/cloudscape-website/cognito-auth/README.md +53 -32
  19. package/src/cloudscape-website/cognito-auth/__snapshots__/generator.spec.ts.snap +161 -125
  20. package/src/cloudscape-website/cognito-auth/files/app/components/CognitoAuth/index.tsx.template +53 -39
  21. package/src/cloudscape-website/cognito-auth/files/common/constructs/src/core/user-identity.ts.template +168 -0
  22. package/src/cloudscape-website/cognito-auth/generator.js +129 -46
  23. package/src/cloudscape-website/cognito-auth/generator.js.map +1 -1
  24. package/src/cloudscape-website/cognito-auth/schema.d.ts +1 -0
  25. package/src/cloudscape-website/cognito-auth/schema.json +7 -1
  26. package/src/cloudscape-website/runtime-config/__snapshots__/generator.spec.ts.snap +15 -17
  27. package/src/cloudscape-website/runtime-config/files/app/components/RuntimeConfig/index.tsx.template +7 -10
  28. package/src/cloudscape-website/runtime-config/files/app/hooks/useRuntimeConfig.tsx.template +13 -0
  29. package/src/cloudscape-website/runtime-config/generator.js +3 -1
  30. package/src/cloudscape-website/runtime-config/generator.js.map +1 -1
  31. package/src/infra/app/README.md +71 -46
  32. package/src/infra/app/__snapshots__/generator.spec.ts.snap +114 -252
  33. package/src/infra/app/files/app/README.md.template +76 -0
  34. package/src/infra/app/files/app/src/main.ts.template +18 -0
  35. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/aws-prototyping.guard +1282 -0
  36. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/cfn-nag.guard +6839 -0
  37. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/hipaa-security.guard +2807 -0
  38. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/nist-csf.guard +2585 -0
  39. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/pci-dss-3-2-1.guard +2236 -0
  40. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/wa-reliability-pillar.guard +885 -0
  41. package/src/infra/app/files/common/constructs/src/core/cfn-guard-rules/wa-security-pillar.guard +2205 -0
  42. package/src/infra/app/files/common/constructs/src/core/cfn-guard.ts.template +63 -0
  43. package/src/infra/app/generator.js +17 -3
  44. package/src/infra/app/generator.js.map +1 -1
  45. package/src/infra/app/schema.d.ts +10 -1
  46. package/src/infra/app/schema.json +16 -8
  47. package/src/trpc/backend/README.md +102 -80
  48. package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +37 -17
  49. package/src/trpc/backend/files/backend/README.md.template +33 -0
  50. package/src/trpc/backend/files/common/constructs/src/app/trpc-apis/__apiNameKebabCase__.ts.template +18 -0
  51. package/src/trpc/backend/files/common/constructs/src/{__apiNameKebabCase__/index.ts.template → core/trpc-api.ts.template} +12 -16
  52. package/src/trpc/backend/files/schema/README.md.template +33 -0
  53. package/src/trpc/backend/generator.js +29 -43
  54. package/src/trpc/backend/generator.js.map +1 -1
  55. package/src/trpc/backend/schema.d.ts +3 -1
  56. package/src/trpc/backend/schema.json +8 -13
  57. package/src/trpc/react/README.md +46 -66
  58. package/src/trpc/react/__snapshots__/generator.spec.ts.snap +104 -65
  59. package/src/trpc/react/files/src/components/TrpcClients/IsolatedTrpcProvider.tsx.template +75 -0
  60. package/src/trpc/react/files/src/components/TrpcClients/TrpcApis.tsx.template +1 -0
  61. package/src/trpc/react/files/src/components/TrpcClients/TrpcClientProviders.tsx.template +10 -0
  62. package/src/trpc/react/files/src/components/TrpcClients/index.tsx.template +5 -0
  63. package/src/trpc/react/files/src/hooks/useSigV4.tsx.template +38 -0
  64. package/src/trpc/react/files/src/hooks/use__apiNameClassName__.tsx.template +3 -0
  65. package/src/trpc/react/generator.js +123 -24
  66. package/src/trpc/react/generator.js.map +1 -1
  67. package/src/trpc/react/schema.json +2 -2
  68. package/src/ts/cjs-to-esm/generator.js.map +1 -1
  69. package/src/ts/lib/eslint.d.ts +1 -1
  70. package/src/ts/lib/eslint.js +59 -11
  71. package/src/ts/lib/eslint.js.map +1 -1
  72. package/src/ts/lib/files/README.md.template +33 -0
  73. package/src/ts/lib/generator.js +11 -4
  74. package/src/ts/lib/generator.js.map +1 -1
  75. package/src/ts/lib/schema.d.ts +1 -3
  76. package/src/ts/lib/schema.json +2 -15
  77. package/src/ts/lib/ts-project-utils.js.map +1 -1
  78. package/src/ts/lib/vitest.js +14 -0
  79. package/src/ts/lib/vitest.js.map +1 -1
  80. package/src/utils/ast.d.ts +13 -0
  81. package/src/utils/ast.js +102 -0
  82. package/src/utils/ast.js.map +1 -0
  83. package/src/utils/files/common/constructs/src/app/index.ts.template +0 -0
  84. package/src/utils/files/common/constructs/src/{runtime-config → core}/runtime-config.ts.template +3 -5
  85. package/src/utils/files/common/constructs/src/index.ts.template +2 -1
  86. package/src/utils/files/common/readme/README.md.template +33 -0
  87. package/src/utils/files/common/types/src/runtime-config.ts.template +1 -13
  88. package/src/utils/format.js.map +1 -1
  89. package/src/utils/names.d.ts +2 -0
  90. package/src/utils/names.js +27 -0
  91. package/src/utils/names.js.map +1 -0
  92. package/src/utils/npm-scope.js.map +1 -1
  93. package/src/utils/paths.js.map +1 -1
  94. package/src/utils/shared-constructs.js +37 -4
  95. package/src/utils/shared-constructs.js.map +1 -1
  96. package/src/utils/versions.d.ts +15 -9
  97. package/src/utils/versions.js +14 -8
  98. package/src/utils/versions.js.map +1 -1
  99. package/src/cloudscape-website/app/files/common/constructs/src/__websiteNameKebabCase__/cloudfront-web-acl.ts.template +0 -317
  100. package/src/cloudscape-website/app/files/common/constructs/src/__websiteNameKebabCase__/index.ts.template +0 -4
  101. package/src/cloudscape-website/app/files/common/constructs/src/__websiteNameKebabCase__/webacl_event_handler/index.ts.template +0 -301
  102. package/src/cloudscape-website/cognito-auth/files/common/constructs/src/identity/index.ts.template +0 -4
  103. package/src/cloudscape-website/cognito-auth/files/common/constructs/src/identity/user-identity.ts.template +0 -66
  104. package/src/cloudscape-website/cognito-auth/files/common/constructs/src/identity/userpool-with-mfa.ts.template +0 -70
  105. package/src/gitlab/generator.d.ts +0 -8
  106. package/src/gitlab/generator.js +0 -16
  107. package/src/gitlab/generator.js.map +0 -1
  108. package/src/gitlab/schema.d.ts +0 -9
  109. package/src/gitlab/schema.json +0 -52
  110. package/src/infra/app/files/src/main.ts.template +0 -37
  111. package/src/trpc/react/files/src/components/TRPCClientProvider/index.tsx.template +0 -34
  112. package/src/trpc/react/files/src/hooks/useTrpc.tsx.template +0 -5
  113. /package/src/infra/app/files/{cdk.json → app/cdk.json} +0 -0
  114. /package/src/infra/app/files/{src → app/src}/stacks/application-stack.ts.template +0 -0
  115. /package/src/utils/files/common/constructs/src/{runtime-config → core}/index.ts.template +0 -0
@@ -16,34 +16,6 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
16
16
 
17
17
  ---
18
18
 
19
- The following software may be included in this product: @babel/code-frame (7.24.7)
20
- This software contains the following license and notice below:
21
-
22
- MIT License
23
-
24
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
25
-
26
- Permission is hereby granted, free of charge, to any person obtaining
27
- a copy of this software and associated documentation files (the
28
- "Software"), to deal in the Software without restriction, including
29
- without limitation the rights to use, copy, modify, merge, publish,
30
- distribute, sublicense, and/or sell copies of the Software, and to
31
- permit persons to whom the Software is furnished to do so, subject to
32
- the following conditions:
33
-
34
- The above copyright notice and this permission notice shall be
35
- included in all copies or substantial portions of the Software.
36
-
37
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
38
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
39
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
41
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
42
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
43
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
44
-
45
- ---
46
-
47
19
  The following software may be included in this product: @babel/code-frame (7.26.2)
48
20
  This software contains the following license and notice below:
49
21
 
@@ -548,34 +520,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
548
520
 
549
521
  ---
550
522
 
551
- The following software may be included in this product: @babel/helper-validator-identifier (7.24.7)
552
- This software contains the following license and notice below:
553
-
554
- MIT License
555
-
556
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
557
-
558
- Permission is hereby granted, free of charge, to any person obtaining
559
- a copy of this software and associated documentation files (the
560
- "Software"), to deal in the Software without restriction, including
561
- without limitation the rights to use, copy, modify, merge, publish,
562
- distribute, sublicense, and/or sell copies of the Software, and to
563
- permit persons to whom the Software is furnished to do so, subject to
564
- the following conditions:
565
-
566
- The above copyright notice and this permission notice shall be
567
- included in all copies or substantial portions of the Software.
568
-
569
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
570
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
571
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
572
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
573
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
574
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
575
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
576
-
577
- ---
578
-
579
523
  The following software may be included in this product: @babel/helper-validator-identifier (7.25.9)
580
524
  This software contains the following license and notice below:
581
525
 
@@ -688,34 +632,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
688
632
 
689
633
  ---
690
634
 
691
- The following software may be included in this product: @babel/highlight (7.24.7)
692
- This software contains the following license and notice below:
693
-
694
- MIT License
695
-
696
- Copyright (c) 2014-present Sebastian McKenzie and other contributors
697
-
698
- Permission is hereby granted, free of charge, to any person obtaining
699
- a copy of this software and associated documentation files (the
700
- "Software"), to deal in the Software without restriction, including
701
- without limitation the rights to use, copy, modify, merge, publish,
702
- distribute, sublicense, and/or sell copies of the Software, and to
703
- permit persons to whom the Software is furnished to do so, subject to
704
- the following conditions:
705
-
706
- The above copyright notice and this permission notice shall be
707
- included in all copies or substantial portions of the Software.
708
-
709
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
710
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
711
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
712
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
713
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
714
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
715
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
716
-
717
- ---
718
-
719
635
  The following software may be included in this product: @babel/parser (7.26.3)
720
636
  This software contains the following license and notice below:
721
637
 
@@ -6487,33 +6403,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6487
6403
 
6488
6404
  ---
6489
6405
 
6490
- The following software may be included in this product: acorn (8.12.1)
6491
- This software contains the following license and notice below:
6492
-
6493
- MIT License
6494
-
6495
- Copyright (C) 2012-2022 by various contributors (see AUTHORS)
6496
-
6497
- Permission is hereby granted, free of charge, to any person obtaining a copy
6498
- of this software and associated documentation files (the "Software"), to deal
6499
- in the Software without restriction, including without limitation the rights
6500
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
6501
- copies of the Software, and to permit persons to whom the Software is
6502
- furnished to do so, subject to the following conditions:
6503
-
6504
- The above copyright notice and this permission notice shall be included in
6505
- all copies or substantial portions of the Software.
6506
-
6507
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6508
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6509
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6510
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6511
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
6512
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
6513
- THE SOFTWARE.
6514
-
6515
- ---
6516
-
6517
6406
  The following software may be included in this product: acorn (8.14.0)
6518
6407
  This software contains the following license and notice below:
6519
6408
 
@@ -6816,21 +6705,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
6816
6705
 
6817
6706
  ---
6818
6707
 
6819
- The following software may be included in this product: ansi-styles (3.2.1)
6820
- This software contains the following license and notice below:
6821
-
6822
- MIT License
6823
-
6824
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
6825
-
6826
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6827
-
6828
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6829
-
6830
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6831
-
6832
- ---
6833
-
6834
6708
  The following software may be included in this product: ansi-styles (4.3.0)
6835
6709
  This software contains the following license and notice below:
6836
6710
 
@@ -7882,7 +7756,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
7882
7756
 
7883
7757
  ---
7884
7758
 
7885
- The following software may be included in this product: call-bind (1.0.7)
7759
+ The following software may be included in this product: call-bind (1.0.8)
7886
7760
  This software contains the following license and notice below:
7887
7761
 
7888
7762
  MIT License
@@ -7909,6 +7783,33 @@ SOFTWARE.
7909
7783
 
7910
7784
  ---
7911
7785
 
7786
+ The following software may be included in this product: call-bind-apply-helpers (1.0.1)
7787
+ This software contains the following license and notice below:
7788
+
7789
+ MIT License
7790
+
7791
+ Copyright (c) 2024 Jordan Harband
7792
+
7793
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7794
+ of this software and associated documentation files (the "Software"), to deal
7795
+ in the Software without restriction, including without limitation the rights
7796
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7797
+ copies of the Software, and to permit persons to whom the Software is
7798
+ furnished to do so, subject to the following conditions:
7799
+
7800
+ The above copyright notice and this permission notice shall be included in all
7801
+ copies or substantial portions of the Software.
7802
+
7803
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7804
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7805
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7806
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7807
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7808
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7809
+ SOFTWARE.
7810
+
7811
+ ---
7812
+
7912
7813
  The following software may be included in this product: callsites (3.1.0)
7913
7814
  This software contains the following license and notice below:
7914
7815
 
@@ -7966,21 +7867,6 @@ SOFTWARE.
7966
7867
 
7967
7868
  ---
7968
7869
 
7969
- The following software may be included in this product: chalk (2.4.2)
7970
- This software contains the following license and notice below:
7971
-
7972
- MIT License
7973
-
7974
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
7975
-
7976
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7977
-
7978
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7979
-
7980
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7981
-
7982
- ---
7983
-
7984
7870
  The following software may be included in this product: chalk (3.0.0)
7985
7871
  This software contains the following license and notice below:
7986
7872
 
@@ -8200,32 +8086,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8200
8086
 
8201
8087
  ---
8202
8088
 
8203
- The following software may be included in this product: color-convert (1.9.3)
8204
- This software contains the following license and notice below:
8205
-
8206
- Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
8207
-
8208
- Permission is hereby granted, free of charge, to any person obtaining
8209
- a copy of this software and associated documentation files (the
8210
- "Software"), to deal in the Software without restriction, including
8211
- without limitation the rights to use, copy, modify, merge, publish,
8212
- distribute, sublicense, and/or sell copies of the Software, and to
8213
- permit persons to whom the Software is furnished to do so, subject to
8214
- the following conditions:
8215
-
8216
- The above copyright notice and this permission notice shall be
8217
- included in all copies or substantial portions of the Software.
8218
-
8219
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
8220
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
8221
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
8222
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
8223
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
8224
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
8225
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8226
-
8227
- ---
8228
-
8229
8089
  The following software may be included in this product: color-convert (2.0.1)
8230
8090
  This software contains the following license and notice below:
8231
8091
 
@@ -8252,20 +8112,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8252
8112
 
8253
8113
  ---
8254
8114
 
8255
- The following software may be included in this product: color-name (1.1.3)
8256
- This software contains the following license and notice below:
8257
-
8258
- The MIT License (MIT)
8259
- Copyright (c) 2015 Dmitry Ivanov
8260
-
8261
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8262
-
8263
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8264
-
8265
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8266
-
8267
- ---
8268
-
8269
8115
  The following software may be included in this product: color-name (1.1.4)
8270
8116
  This software contains the following license and notice below:
8271
8117
 
@@ -9879,6 +9725,33 @@ THE SOFTWARE.
9879
9725
 
9880
9726
  ---
9881
9727
 
9728
+ The following software may be included in this product: dunder-proto (1.0.0)
9729
+ This software contains the following license and notice below:
9730
+
9731
+ MIT License
9732
+
9733
+ Copyright (c) 2024 ECMAScript Shims
9734
+
9735
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9736
+ of this software and associated documentation files (the "Software"), to deal
9737
+ in the Software without restriction, including without limitation the rights
9738
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9739
+ copies of the Software, and to permit persons to whom the Software is
9740
+ furnished to do so, subject to the following conditions:
9741
+
9742
+ The above copyright notice and this permission notice shall be included in all
9743
+ copies or substantial portions of the Software.
9744
+
9745
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9746
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9747
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9748
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9749
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9750
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9751
+ SOFTWARE.
9752
+
9753
+ ---
9754
+
9882
9755
  The following software may be included in this product: duplexify (3.7.1)
9883
9756
  This software contains the following license and notice below:
9884
9757
 
@@ -10296,7 +10169,7 @@ THE SOFTWARE.
10296
10169
 
10297
10170
  ---
10298
10171
 
10299
- The following software may be included in this product: es-define-property (1.0.0)
10172
+ The following software may be included in this product: es-define-property (1.0.1)
10300
10173
  This software contains the following license and notice below:
10301
10174
 
10302
10175
  MIT License
@@ -10366,6 +10239,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
10366
10239
 
10367
10240
  ---
10368
10241
 
10242
+ The following software may be included in this product: es-object-atoms (1.0.0)
10243
+ This software contains the following license and notice below:
10244
+
10245
+ MIT License
10246
+
10247
+ Copyright (c) 2024 Jordan Harband
10248
+
10249
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10250
+ of this software and associated documentation files (the "Software"), to deal
10251
+ in the Software without restriction, including without limitation the rights
10252
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10253
+ copies of the Software, and to permit persons to whom the Software is
10254
+ furnished to do so, subject to the following conditions:
10255
+
10256
+ The above copyright notice and this permission notice shall be included in all
10257
+ copies or substantial portions of the Software.
10258
+
10259
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
10260
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
10261
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
10262
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
10263
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
10264
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
10265
+ SOFTWARE.
10266
+
10267
+ ---
10268
+
10369
10269
  The following software may be included in this product: esbuild (0.21.5)
10370
10270
  This software contains the following license and notice below:
10371
10271
 
@@ -11535,7 +11435,7 @@ THE SOFTWARE.
11535
11435
 
11536
11436
  ---
11537
11437
 
11538
- The following software may be included in this product: get-intrinsic (1.2.4)
11438
+ The following software may be included in this product: get-intrinsic (1.2.6)
11539
11439
  This software contains the following license and notice below:
11540
11440
 
11541
11441
  MIT License
@@ -11685,7 +11585,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
11685
11585
 
11686
11586
  ---
11687
11587
 
11688
- The following software may be included in this product: gopd (1.0.1)
11588
+ The following software may be included in this product: gopd (1.2.0)
11689
11589
  This software contains the following license and notice below:
11690
11590
 
11691
11591
  MIT License
@@ -11764,21 +11664,6 @@ THE SOFTWARE.
11764
11664
 
11765
11665
  ---
11766
11666
 
11767
- The following software may be included in this product: has-flag (3.0.0)
11768
- This software contains the following license and notice below:
11769
-
11770
- MIT License
11771
-
11772
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
11773
-
11774
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
11775
-
11776
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
11777
-
11778
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11779
-
11780
- ---
11781
-
11782
11667
  The following software may be included in this product: has-flag (4.0.0)
11783
11668
  This software contains the following license and notice below:
11784
11669
 
@@ -11821,34 +11706,7 @@ SOFTWARE.
11821
11706
 
11822
11707
  ---
11823
11708
 
11824
- The following software may be included in this product: has-proto (1.0.3)
11825
- This software contains the following license and notice below:
11826
-
11827
- MIT License
11828
-
11829
- Copyright (c) 2022 Inspect JS
11830
-
11831
- Permission is hereby granted, free of charge, to any person obtaining a copy
11832
- of this software and associated documentation files (the "Software"), to deal
11833
- in the Software without restriction, including without limitation the rights
11834
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11835
- copies of the Software, and to permit persons to whom the Software is
11836
- furnished to do so, subject to the following conditions:
11837
-
11838
- The above copyright notice and this permission notice shall be included in all
11839
- copies or substantial portions of the Software.
11840
-
11841
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11842
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11843
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
11844
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11845
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
11846
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
11847
- SOFTWARE.
11848
-
11849
- ---
11850
-
11851
- The following software may be included in this product: has-symbols (1.0.3)
11709
+ The following software may be included in this product: has-symbols (1.1.0)
11852
11710
  This software contains the following license and notice below:
11853
11711
 
11854
11712
  MIT License
@@ -14735,6 +14593,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
14735
14593
 
14736
14594
  ---
14737
14595
 
14596
+ The following software may be included in this product: math-intrinsics (1.0.0)
14597
+ This software contains the following license and notice below:
14598
+
14599
+ MIT License
14600
+
14601
+ Copyright (c) 2024 ECMAScript Shims
14602
+
14603
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14604
+ of this software and associated documentation files (the "Software"), to deal
14605
+ in the Software without restriction, including without limitation the rights
14606
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14607
+ copies of the Software, and to permit persons to whom the Software is
14608
+ furnished to do so, subject to the following conditions:
14609
+
14610
+ The above copyright notice and this permission notice shall be included in all
14611
+ copies or substantial portions of the Software.
14612
+
14613
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14614
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14615
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14616
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
14617
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
14618
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
14619
+ SOFTWARE.
14620
+
14621
+ ---
14622
+
14738
14623
  The following software may be included in this product: media-typer (0.3.0)
14739
14624
  This software contains the following license and notice below:
14740
14625
 
@@ -15794,7 +15679,7 @@ THE SOFTWARE.
15794
15679
 
15795
15680
  ---
15796
15681
 
15797
- The following software may be included in this product: object-inspect (1.13.2)
15682
+ The following software may be included in this product: object-inspect (1.13.3)
15798
15683
  This software contains the following license and notice below:
15799
15684
 
15800
15685
  MIT License
@@ -27578,21 +27463,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27578
27463
 
27579
27464
  ---
27580
27465
 
27581
- The following software may be included in this product: supports-color (5.5.0)
27582
- This software contains the following license and notice below:
27583
-
27584
- MIT License
27585
-
27586
- Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
27587
-
27588
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
27589
-
27590
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
27591
-
27592
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27593
-
27594
- ---
27595
-
27596
27466
  The following software may be included in this product: supports-color (7.2.0)
27597
27467
  This software contains the following license and notice below:
27598
27468
 
package/generators.json CHANGED
@@ -6,8 +6,7 @@
6
6
  "ts#lib": {
7
7
  "factory": "./src/ts/lib/generator",
8
8
  "schema": "./src/ts/lib/schema.json",
9
- "description": "Generates a TypeScript library",
10
- "hidden": true
9
+ "description": "Generates a TypeScript library"
11
10
  },
12
11
  "ts#cjs-to-esm": {
13
12
  "factory": "./src/ts/cjs-to-esm/generator",
@@ -45,11 +44,6 @@
45
44
  "factory": "./src/trpc/react/generator",
46
45
  "schema": "./src/trpc/react/schema.json",
47
46
  "description": "provides React integration to a React website"
48
- },
49
- "gitlab": {
50
- "factory": "./src/gitlab/generator",
51
- "schema": "./src/gitlab/schema.json",
52
- "description": "Gitlab CI/CD pipeline"
53
47
  }
54
48
  }
55
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin",
3
- "version": "0.1.6",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "license": "Apache-2.0",