aws-cdk 2.1131.0 → 2.1132.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.
- package/README.md +34 -0
- package/THIRD_PARTY_LICENSES +205 -0
- package/build-info.json +2 -2
- package/lib/cli/cli-config.js +4 -1
- package/lib/cli/cli-type-registry.json +3 -0
- package/lib/cli/cli.js +5 -1
- package/lib/cli/convert-to-user-input.js +6 -1
- package/lib/cli/io-host/cli-io-host.d.ts +1 -1
- package/lib/cli/io-host/cli-io-host.js +11 -4
- package/lib/cli/parse-command-line-arguments.js +2 -1
- package/lib/cli/telemetry/schema.d.ts +1 -0
- package/lib/cli/telemetry/schema.js +1 -1
- package/lib/cli/telemetry/session.js +84 -1
- package/lib/cli/user-configuration.d.ts +1 -0
- package/lib/cli/user-configuration.js +2 -1
- package/lib/cli/user-input.d.ts +4 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/commands/lsp.d.ts +9 -0
- package/lib/commands/lsp.js +56 -0
- package/lib/index.js +21337 -5204
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -785,6 +785,37 @@ $ cdk watch --concurrency 5
|
|
|
785
785
|
It is not recommended to use `watch` for production deployments. See the
|
|
786
786
|
*Hotswap deployments for faster development* section for more information.
|
|
787
787
|
|
|
788
|
+
### `cdk lsp`
|
|
789
|
+
|
|
790
|
+
Starts the CDK Language Server, which brings information from your synthesized
|
|
791
|
+
cloud assembly into your editor. It is a standard [Language Server Protocol](https://microsoft.github.io/language-server-protocol/)
|
|
792
|
+
server that communicates over stdio, so any LSP-capable editor (or AI agent)
|
|
793
|
+
can connect to it.
|
|
794
|
+
|
|
795
|
+
```console
|
|
796
|
+
$ # Normally started by your editor's LSP client, which talks to it over stdin/stdout.
|
|
797
|
+
$ cdk lsp
|
|
798
|
+
```
|
|
799
|
+
|
|
800
|
+
Once connected, it surfaces:
|
|
801
|
+
|
|
802
|
+
- **Code lenses** on the source lines that create resources, linking each construct to the resource it produces in the synthesized template.
|
|
803
|
+
- **Hover** details showing a construct's resolved CloudFormation properties.
|
|
804
|
+
- **Go to definition** from a synthesized `*.template.json` back to the construct source that created it.
|
|
805
|
+
- **Diagnostics** from policy validation, shown as squiggles on the constructs that violate a rule.
|
|
806
|
+
|
|
807
|
+
Source-linked features currently work for TypeScript and Python.
|
|
808
|
+
|
|
809
|
+
The server can run your app to keep the cloud assembly current (for example, an
|
|
810
|
+
"auto-synth on save" mode offered through your editor). Because that runs your
|
|
811
|
+
project's `app` command with your shell environment and AWS credentials, enable
|
|
812
|
+
it only for projects you trust. This is the same trust model that `cdk synth`
|
|
813
|
+
and `cdk watch` already use.
|
|
814
|
+
|
|
815
|
+
`cdk lsp` is designed to be driven by an editor extension rather than run by hand.
|
|
816
|
+
For the full feature list, the editor-integration protocol, and the programmatic
|
|
817
|
+
API, see the [`@aws-cdk/cdk-explorer` package README](https://github.com/aws/aws-cdk-cli/blob/main/packages/%40aws-cdk/cdk-explorer/README.md).
|
|
818
|
+
|
|
788
819
|
### `cdk import`
|
|
789
820
|
|
|
790
821
|
Sometimes you want to import AWS resources that were created using other means
|
|
@@ -864,6 +895,9 @@ $ cdk orphan --unstable=orphan MyStack/MyTable
|
|
|
864
895
|
|
|
865
896
|
$ # Orphan multiple resources
|
|
866
897
|
$ cdk orphan --unstable=orphan MyStack/MyTable MyStack/MyBucket
|
|
898
|
+
|
|
899
|
+
$ # For a stack inside a Stage, use the stage-qualified path
|
|
900
|
+
$ cdk orphan --unstable=orphan MyStage/MyStack/MyTable
|
|
867
901
|
```
|
|
868
902
|
|
|
869
903
|
#### Example: Migrating DynamoDB Table to TableV2
|
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -7799,6 +7799,77 @@ Apache License
|
|
|
7799
7799
|
of your accepting any such warranty or additional liability.
|
|
7800
7800
|
|
|
7801
7801
|
|
|
7802
|
+
----------------
|
|
7803
|
+
|
|
7804
|
+
** @jridgewell/resolve-uri@3.1.2 - https://www.npmjs.com/package/@jridgewell/resolve-uri/v/3.1.2 | MIT
|
|
7805
|
+
Copyright 2019 Justin Ridgewell <jridgewell@google.com>
|
|
7806
|
+
|
|
7807
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7808
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7809
|
+
in the Software without restriction, including without limitation the rights
|
|
7810
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7811
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7812
|
+
furnished to do so, subject to the following conditions:
|
|
7813
|
+
|
|
7814
|
+
The above copyright notice and this permission notice shall be included in
|
|
7815
|
+
all copies or substantial portions of the Software.
|
|
7816
|
+
|
|
7817
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7818
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7819
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7820
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7821
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7822
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7823
|
+
SOFTWARE.
|
|
7824
|
+
|
|
7825
|
+
----------------
|
|
7826
|
+
|
|
7827
|
+
** @jridgewell/sourcemap-codec@1.5.5 - https://www.npmjs.com/package/@jridgewell/sourcemap-codec/v/1.5.5 | MIT
|
|
7828
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
7829
|
+
|
|
7830
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7831
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7832
|
+
in the Software without restriction, including without limitation the rights
|
|
7833
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7834
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7835
|
+
furnished to do so, subject to the following conditions:
|
|
7836
|
+
|
|
7837
|
+
The above copyright notice and this permission notice shall be included in
|
|
7838
|
+
all copies or substantial portions of the Software.
|
|
7839
|
+
|
|
7840
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7841
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7842
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7843
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7844
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7845
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7846
|
+
SOFTWARE.
|
|
7847
|
+
|
|
7848
|
+
|
|
7849
|
+
----------------
|
|
7850
|
+
|
|
7851
|
+
** @jridgewell/trace-mapping@0.3.31 - https://www.npmjs.com/package/@jridgewell/trace-mapping/v/0.3.31 | MIT
|
|
7852
|
+
Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
|
|
7853
|
+
|
|
7854
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7855
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7856
|
+
in the Software without restriction, including without limitation the rights
|
|
7857
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7858
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7859
|
+
furnished to do so, subject to the following conditions:
|
|
7860
|
+
|
|
7861
|
+
The above copyright notice and this permission notice shall be included in
|
|
7862
|
+
all copies or substantial portions of the Software.
|
|
7863
|
+
|
|
7864
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7865
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7866
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7867
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7868
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7869
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7870
|
+
SOFTWARE.
|
|
7871
|
+
|
|
7872
|
+
|
|
7802
7873
|
----------------
|
|
7803
7874
|
|
|
7804
7875
|
** @nodelib/fs.scandir@2.1.5 - https://www.npmjs.com/package/@nodelib/fs.scandir/v/2.1.5 | MIT
|
|
@@ -10732,6 +10803,34 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
10732
10803
|
|
|
10733
10804
|
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.
|
|
10734
10805
|
|
|
10806
|
+
----------------
|
|
10807
|
+
|
|
10808
|
+
** convert-source-map@2.0.0 - https://www.npmjs.com/package/convert-source-map/v/2.0.0 | MIT
|
|
10809
|
+
Copyright 2013 Thorsten Lorenz.
|
|
10810
|
+
All rights reserved.
|
|
10811
|
+
|
|
10812
|
+
Permission is hereby granted, free of charge, to any person
|
|
10813
|
+
obtaining a copy of this software and associated documentation
|
|
10814
|
+
files (the "Software"), to deal in the Software without
|
|
10815
|
+
restriction, including without limitation the rights to use,
|
|
10816
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10817
|
+
copies of the Software, and to permit persons to whom the
|
|
10818
|
+
Software is furnished to do so, subject to the following
|
|
10819
|
+
conditions:
|
|
10820
|
+
|
|
10821
|
+
The above copyright notice and this permission notice shall be
|
|
10822
|
+
included in all copies or substantial portions of the Software.
|
|
10823
|
+
|
|
10824
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
10825
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
10826
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
10827
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
10828
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
10829
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
10830
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
10831
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
10832
|
+
|
|
10833
|
+
|
|
10735
10834
|
----------------
|
|
10736
10835
|
|
|
10737
10836
|
** data-uri-to-buffer@6.0.2 - https://www.npmjs.com/package/data-uri-to-buffer/v/6.0.2 | MIT
|
|
@@ -11387,6 +11486,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
11387
11486
|
THE SOFTWARE.
|
|
11388
11487
|
|
|
11389
11488
|
|
|
11489
|
+
----------------
|
|
11490
|
+
|
|
11491
|
+
** json-source-map@0.6.1 - https://www.npmjs.com/package/json-source-map/v/0.6.1 | MIT
|
|
11492
|
+
MIT License
|
|
11493
|
+
|
|
11494
|
+
Copyright (c) 2017 Evgeny Poberezkin
|
|
11495
|
+
|
|
11496
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11497
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11498
|
+
in the Software without restriction, including without limitation the rights
|
|
11499
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11500
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11501
|
+
furnished to do so, subject to the following conditions:
|
|
11502
|
+
|
|
11503
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11504
|
+
copies or substantial portions of the Software.
|
|
11505
|
+
|
|
11506
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11507
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11508
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
11509
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
11510
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
11511
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
11512
|
+
SOFTWARE.
|
|
11513
|
+
|
|
11514
|
+
|
|
11390
11515
|
----------------
|
|
11391
11516
|
|
|
11392
11517
|
** jsonfile@6.2.0 - https://www.npmjs.com/package/jsonfile/v/6.2.0 | MIT
|
|
@@ -12393,6 +12518,86 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
12393
12518
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
12394
12519
|
|
|
12395
12520
|
|
|
12521
|
+
----------------
|
|
12522
|
+
|
|
12523
|
+
** vscode-jsonrpc@8.2.0 - https://www.npmjs.com/package/vscode-jsonrpc/v/8.2.0 | MIT
|
|
12524
|
+
Copyright (c) Microsoft Corporation
|
|
12525
|
+
|
|
12526
|
+
All rights reserved.
|
|
12527
|
+
|
|
12528
|
+
MIT License
|
|
12529
|
+
|
|
12530
|
+
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:
|
|
12531
|
+
|
|
12532
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12533
|
+
|
|
12534
|
+
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.
|
|
12535
|
+
|
|
12536
|
+
|
|
12537
|
+
----------------
|
|
12538
|
+
|
|
12539
|
+
** vscode-jsonrpc@8.2.1 - https://www.npmjs.com/package/vscode-jsonrpc/v/8.2.1 | MIT
|
|
12540
|
+
Copyright (c) Microsoft Corporation
|
|
12541
|
+
|
|
12542
|
+
All rights reserved.
|
|
12543
|
+
|
|
12544
|
+
MIT License
|
|
12545
|
+
|
|
12546
|
+
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:
|
|
12547
|
+
|
|
12548
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12549
|
+
|
|
12550
|
+
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.
|
|
12551
|
+
|
|
12552
|
+
|
|
12553
|
+
----------------
|
|
12554
|
+
|
|
12555
|
+
** vscode-languageserver-protocol@3.17.5 - https://www.npmjs.com/package/vscode-languageserver-protocol/v/3.17.5 | MIT
|
|
12556
|
+
Copyright (c) Microsoft Corporation
|
|
12557
|
+
|
|
12558
|
+
All rights reserved.
|
|
12559
|
+
|
|
12560
|
+
MIT License
|
|
12561
|
+
|
|
12562
|
+
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:
|
|
12563
|
+
|
|
12564
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12565
|
+
|
|
12566
|
+
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.
|
|
12567
|
+
|
|
12568
|
+
|
|
12569
|
+
----------------
|
|
12570
|
+
|
|
12571
|
+
** vscode-languageserver-types@3.17.5 - https://www.npmjs.com/package/vscode-languageserver-types/v/3.17.5 | MIT
|
|
12572
|
+
Copyright (c) Microsoft Corporation
|
|
12573
|
+
|
|
12574
|
+
All rights reserved.
|
|
12575
|
+
|
|
12576
|
+
MIT License
|
|
12577
|
+
|
|
12578
|
+
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:
|
|
12579
|
+
|
|
12580
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12581
|
+
|
|
12582
|
+
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.
|
|
12583
|
+
|
|
12584
|
+
|
|
12585
|
+
----------------
|
|
12586
|
+
|
|
12587
|
+
** vscode-languageserver@9.0.1 - https://www.npmjs.com/package/vscode-languageserver/v/9.0.1 | MIT
|
|
12588
|
+
Copyright (c) Microsoft Corporation
|
|
12589
|
+
|
|
12590
|
+
All rights reserved.
|
|
12591
|
+
|
|
12592
|
+
MIT License
|
|
12593
|
+
|
|
12594
|
+
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:
|
|
12595
|
+
|
|
12596
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12597
|
+
|
|
12598
|
+
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.
|
|
12599
|
+
|
|
12600
|
+
|
|
12396
12601
|
----------------
|
|
12397
12602
|
|
|
12398
12603
|
** which-module@2.0.1 - https://www.npmjs.com/package/which-module/v/2.0.1 | ISC
|
package/build-info.json
CHANGED