aem-project-archetype icon indicating copy to clipboard operation
aem-project-archetype copied to clipboard

Frontend maven installation of node and npm fails / build fails for ui.apps module when generated via Archetype25 [bug]

Open jaydubb12 opened this issue 3 years ago • 12 comments

Issue

The installation of node / npm fails, which then fails the build when a new project is generated using Archetype25

Versions

Maven 3.6.3 Archetype 25

Additional Info

  • There appears to be a long standing issue that is associated to frontend-maven-plugin related to this issue
  • Simply setting a proxy config in the settings.xml for maven does not resolve the issue

What I did to resolve

  • Upgraded the frontend-maven-plugin version to 1.11.0
  • Changed node version to 10.23.3
  • Commented the specific npm version, and allowed the process to natively unpack the bundled npm version that comes with 10.23.3
  • Set the value for the download root as a configuration

Sample pom.xml config to resolve the issue

<plugin>
                   <groupId>com.github.eirslett</groupId>
                   <artifactId>frontend-maven-plugin</artifactId>
                   <version>1.11.0</version>
                   <configuration>
                       <nodeVersion>v10.23.3</nodeVersion>
                       <!-- <npmVersion>6.14.11</npmVersion> -->
                       <downloadRoot>https://nodejs.org/dist</downloadRoot>
                   </configuration>
                   <executions>
                       <execution>
                           <id>install node and npm</id>
                           <goals>
                               <goal>install-node-and-npm</goal>
                           </goals>
                       </execution>
                       <execution>
                           <id>npm install</id>
                           <goals>
                               <goal>npm</goal>
                           </goals>
                       </execution>
                   </executions>
               </plugin>

Expected Behaviour

  • The OOTB project generated by the maven Archetype25 would build without error

Actual Behaviour

  • The ui.apps build fails

Steps to Reproduce

jaydubb12 avatar Feb 18 '21 09:02 jaydubb12

I didn't see this behaviour on 25. Cloud or non-cloud? I think it would be useful also to add any build stack trace to it - without that it will be pretty hard to see what's going on in here on your machine

tomaszsoczyk-cognifide avatar Mar 11 '21 12:03 tomaszsoczyk-cognifide

@tomaszsoczyk-cognifide I'm having the same issue.

AEM local development instance (non-cloud)
AEM version 6.5.0
AEM service pack 6.5.8 installed
Project generated with latest archetype (25)
Node 10.13.0

This is the node error log:

0 info it worked if it ends with ok
1 verbose cli [ '/Users/privera/.nvm/versions/node/v10.13.0/bin/node',
1 verbose cli   '/Users/privera/.nvm/versions/node/v10.13.0/bin/npm',
1 verbose cli   'install' ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session 4b6257186894dd47
5 silly install runPreinstallTopLevelLifecycles
6 silly preinstall [email protected]
7 info lifecycle [email protected]~preinstall: [email protected]
8 silly install loadCurrentTree
9 silly install readLocalPackageData
10 timing stage:loadCurrentTree Completed in 1540ms
11 silly install loadIdealTree
12 silly install cloneCurrentTreeToIdealTree
13 timing stage:loadIdealTree:cloneCurrentTree Completed in 12ms
14 silly install loadShrinkwrap
15 timing stage:loadIdealTree:loadShrinkwrap Completed in 396ms
16 silly install loadAllDepsIntoIdealTree
17 http fetch GET 304 https://registry.npmjs.org/tsconfig-paths-webpack-plugin 156ms (from cache)
18 silly pacote range manifest for tsconfig-paths-webpack-plugin@^3.2.0 fetched in 177ms
19 http fetch GET 304 https://registry.npmjs.org/tsconfig-paths 41ms (from cache)
20 silly pacote range manifest for tsconfig-paths@^3.9.0 fetched in 42ms
21 http fetch GET 304 https://registry.npmjs.org/enhanced-resolve 81ms (from cache)
22 silly pacote range manifest for enhanced-resolve@^5.7.0 fetched in 87ms
23 http fetch GET 304 https://registry.npmjs.org/chalk 97ms (from cache)
24 silly pacote range manifest for chalk@^4.1.0 fetched in 98ms
25 http fetch GET 304 https://registry.npmjs.org/@types%2fjson5 61ms (from cache)
26 silly pacote range manifest for @types/json5@^0.0.29 fetched in 65ms
27 http fetch GET 200 https://registry.npmjs.org/supports-color 10ms (from cache)
28 silly pacote range manifest for supports-color@^7.1.0 fetched in 11ms
29 http fetch GET 200 https://registry.npmjs.org/has-flag 3ms (from cache)
30 silly pacote range manifest for has-flag@^4.0.0 fetched in 4ms
31 http fetch GET 304 https://registry.npmjs.org/tapable 51ms (from cache)
32 http fetch GET 304 https://registry.npmjs.org/strip-bom 96ms (from cache)
33 silly pacote range manifest for tapable@^2.2.0 fetched in 53ms
34 silly pacote range manifest for strip-bom@^3.0.0 fetched in 97ms
35 http fetch GET 304 https://registry.npmjs.org/ansi-styles 44ms (from cache)
36 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 45ms
37 http fetch GET 304 https://registry.npmjs.org/color-convert 35ms (from cache)
38 silly pacote range manifest for color-convert@^2.0.1 fetched in 36ms
39 http fetch GET 304 https://registry.npmjs.org/color-name 36ms (from cache)
40 silly pacote range manifest for color-name@~1.1.4 fetched in 36ms
41 http fetch GET 304 https://registry.npmjs.org/json5 383ms (from cache)
42 silly pacote range manifest for json5@^1.0.1 fetched in 384ms
43 silly pacote range manifest for tsconfig-paths-webpack-plugin@^3.2.0 fetched in 2ms
44 silly resolveWithNewModule [email protected] checking installable status
45 silly pacote range manifest for chalk@^4.1.0 fetched in 1ms
46 silly resolveWithNewModule [email protected] checking installable status
47 silly pacote range manifest for enhanced-resolve@^5.7.0 fetched in 2ms
48 silly resolveWithNewModule [email protected] checking installable status
49 silly pacote range manifest for tsconfig-paths@^3.9.0 fetched in 3ms
50 silly resolveWithNewModule [email protected] checking installable status
51 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 1ms
52 silly resolveWithNewModule [email protected] checking installable status
53 silly pacote range manifest for supports-color@^7.1.0 fetched in 3ms
54 silly resolveWithNewModule [email protected] checking installable status
55 silly pacote range manifest for color-convert@^2.0.1 fetched in 1ms
56 silly resolveWithNewModule [email protected] checking installable status
57 silly pacote range manifest for color-name@~1.1.4 fetched in 1ms
58 silly resolveWithNewModule [email protected] checking installable status
59 silly pacote range manifest for has-flag@^4.0.0 fetched in 0ms
60 silly resolveWithNewModule [email protected] checking installable status
61 silly pacote range manifest for tapable@^2.2.0 fetched in 1ms
62 silly resolveWithNewModule [email protected] checking installable status
63 silly pacote range manifest for @types/json5@^0.0.29 fetched in 1ms
64 silly resolveWithNewModule @types/[email protected] checking installable status
65 silly pacote range manifest for json5@^1.0.1 fetched in 2ms
66 silly resolveWithNewModule [email protected] checking installable status
67 silly pacote range manifest for strip-bom@^3.0.0 fetched in 3ms
68 silly resolveWithNewModule [email protected] checking installable status
69 timing stage:loadIdealTree:loadAllDepsIntoIdealTree Completed in 2042ms
70 timing stage:loadIdealTree Completed in 2872ms
71 silly currentTree [email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @babel/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├── @types/[email protected]
71 silly currentTree ├─┬ @types/[email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ @types/[email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ @types/[email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── @typescript-eslint/[email protected]
71 silly currentTree ├── @typescript-eslint/[email protected]
71 silly currentTree ├── @typescript-eslint/[email protected]
71 silly currentTree ├─┬ @typescript-eslint/[email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @webassemblyjs/[email protected]
71 silly currentTree ├── @xtuc/[email protected]
71 silly currentTree ├── @xtuc/[email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ ├── [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ ├── [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├─┬ [email protected]
71 silly currentTree │ │ ├── [email protected]
71 silly currentTree │ │ └── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├─┬ [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ ├── [email protected]
71 silly currentTree │ └── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree ├── [email protected]
71 silly currentTree └── [email protected]
72 silly idealTree [email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @babel/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├── @types/[email protected]
72 silly idealTree ├─┬ @types/[email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ @types/[email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ @types/[email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── @typescript-eslint/[email protected]
72 silly idealTree ├── @typescript-eslint/[email protected]
72 silly idealTree ├── @typescript-eslint/[email protected]
72 silly idealTree ├─┬ @typescript-eslint/[email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @webassemblyjs/[email protected]
72 silly idealTree ├── @xtuc/[email protected]
72 silly idealTree ├── @xtuc/[email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ ├── [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ ├── [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├─┬ [email protected]
72 silly idealTree │ │ ├── [email protected]
72 silly idealTree │ │ └── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├─┬ [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ ├── [email protected]
72 silly idealTree │ └── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree ├── [email protected]
72 silly idealTree └── [email protected]
73 silly install generateActionsToTake
74 timing stage:generateActionsToTake Completed in 59ms
75 silly diffTrees action count 13
76 silly diffTrees add @types/[email protected]
77 silly diffTrees add [email protected]
78 silly diffTrees add [email protected]
79 silly diffTrees add [email protected]
80 silly diffTrees add [email protected]
81 silly diffTrees add [email protected]
82 silly diffTrees add [email protected]
83 silly diffTrees add [email protected]
84 silly diffTrees add [email protected]
85 silly diffTrees add [email protected]
86 silly diffTrees add [email protected]
87 silly diffTrees add [email protected]
88 silly diffTrees add [email protected]
89 silly decomposeActions action count 104
90 silly decomposeActions fetch @types/[email protected]
91 silly decomposeActions extract @types/[email protected]
92 silly decomposeActions preinstall @types/[email protected]
93 silly decomposeActions build @types/[email protected]
94 silly decomposeActions install @types/[email protected]
95 silly decomposeActions postinstall @types/[email protected]
96 silly decomposeActions finalize @types/[email protected]
97 silly decomposeActions refresh-package-json @types/[email protected]
98 silly decomposeActions fetch [email protected]
99 silly decomposeActions extract [email protected]
100 silly decomposeActions preinstall [email protected]
101 silly decomposeActions build [email protected]
102 silly decomposeActions install [email protected]
103 silly decomposeActions postinstall [email protected]
104 silly decomposeActions finalize [email protected]
105 silly decomposeActions refresh-package-json [email protected]
106 silly decomposeActions fetch [email protected]
107 silly decomposeActions extract [email protected]
108 silly decomposeActions preinstall [email protected]
109 silly decomposeActions build [email protected]
110 silly decomposeActions install [email protected]
111 silly decomposeActions postinstall [email protected]
112 silly decomposeActions finalize [email protected]
113 silly decomposeActions refresh-package-json [email protected]
114 silly decomposeActions fetch [email protected]
115 silly decomposeActions extract [email protected]
116 silly decomposeActions preinstall [email protected]
117 silly decomposeActions build [email protected]
118 silly decomposeActions install [email protected]
119 silly decomposeActions postinstall [email protected]
120 silly decomposeActions finalize [email protected]
121 silly decomposeActions refresh-package-json [email protected]
122 silly decomposeActions fetch [email protected]
123 silly decomposeActions extract [email protected]
124 silly decomposeActions preinstall [email protected]
125 silly decomposeActions build [email protected]
126 silly decomposeActions install [email protected]
127 silly decomposeActions postinstall [email protected]
128 silly decomposeActions finalize [email protected]
129 silly decomposeActions refresh-package-json [email protected]
130 silly decomposeActions fetch [email protected]
131 silly decomposeActions extract [email protected]
132 silly decomposeActions preinstall [email protected]
133 silly decomposeActions build [email protected]
134 silly decomposeActions install [email protected]
135 silly decomposeActions postinstall [email protected]
136 silly decomposeActions finalize [email protected]
137 silly decomposeActions refresh-package-json [email protected]
138 silly decomposeActions fetch [email protected]
139 silly decomposeActions extract [email protected]
140 silly decomposeActions preinstall [email protected]
141 silly decomposeActions build [email protected]
142 silly decomposeActions install [email protected]
143 silly decomposeActions postinstall [email protected]
144 silly decomposeActions finalize [email protected]
145 silly decomposeActions refresh-package-json [email protected]
146 silly decomposeActions fetch [email protected]
147 silly decomposeActions extract [email protected]
148 silly decomposeActions preinstall [email protected]
149 silly decomposeActions build [email protected]
150 silly decomposeActions install [email protected]
151 silly decomposeActions postinstall [email protected]
152 silly decomposeActions finalize [email protected]
153 silly decomposeActions refresh-package-json [email protected]
154 silly decomposeActions fetch [email protected]
155 silly decomposeActions extract [email protected]
156 silly decomposeActions preinstall [email protected]
157 silly decomposeActions build [email protected]
158 silly decomposeActions install [email protected]
159 silly decomposeActions postinstall [email protected]
160 silly decomposeActions finalize [email protected]
161 silly decomposeActions refresh-package-json [email protected]
162 silly decomposeActions fetch [email protected]
163 silly decomposeActions extract [email protected]
164 silly decomposeActions preinstall [email protected]
165 silly decomposeActions build [email protected]
166 silly decomposeActions install [email protected]
167 silly decomposeActions postinstall [email protected]
168 silly decomposeActions finalize [email protected]
169 silly decomposeActions refresh-package-json [email protected]
170 silly decomposeActions fetch [email protected]
171 silly decomposeActions extract [email protected]
172 silly decomposeActions preinstall [email protected]
173 silly decomposeActions build [email protected]
174 silly decomposeActions install [email protected]
175 silly decomposeActions postinstall [email protected]
176 silly decomposeActions finalize [email protected]
177 silly decomposeActions refresh-package-json [email protected]
178 silly decomposeActions fetch [email protected]
179 silly decomposeActions extract [email protected]
180 silly decomposeActions preinstall [email protected]
181 silly decomposeActions build [email protected]
182 silly decomposeActions install [email protected]
183 silly decomposeActions postinstall [email protected]
184 silly decomposeActions finalize [email protected]
185 silly decomposeActions refresh-package-json [email protected]
186 silly decomposeActions fetch [email protected]
187 silly decomposeActions extract [email protected]
188 silly decomposeActions preinstall [email protected]
189 silly decomposeActions build [email protected]
190 silly decomposeActions install [email protected]
191 silly decomposeActions postinstall [email protected]
192 silly decomposeActions finalize [email protected]
193 silly decomposeActions refresh-package-json [email protected]
194 silly install executeActions
195 silly doSerial global-install 104
196 verbose correctMkdir /Users/privera/.npm/_locks correctMkdir not in flight; initializing
197 verbose lock using /Users/privera/.npm/_locks/staging-abcbc0b6aa4dfbd3.lock for /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/.staging
198 silly doParallel extract 13
199 silly extract @types/[email protected]
200 silly extract [email protected]
201 silly extract [email protected]
202 silly extract [email protected]
203 silly extract [email protected]
204 silly extract [email protected]
205 silly extract [email protected]
206 silly extract [email protected]
207 silly extract [email protected]
208 silly extract [email protected]
209 silly extract [email protected]
210 silly extract [email protected]
211 silly extract [email protected]
212 timing audit compress Completed in 69ms
213 info audit Submitting payload of 81608bytes
214 timing audit submit Completed in 515ms
215 http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/audits/quick 514ms
216 timing audit body Completed in 0ms
217 timing action:extract Completed in 614ms
218 silly doReverseSerial unbuild 104
219 silly doSerial remove 104
220 silly doSerial move 104
221 silly doSerial finalize 104
222 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/@types/json5
223 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name
224 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert
225 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles
226 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag
227 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color
228 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk
229 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/tapable
230 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/enhanced-resolve
231 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules/json5
232 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules/strip-bom
233 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths
234 silly finalize /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin
235 timing action:finalize Completed in 47ms
236 silly doParallel refresh-package-json 13
237 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/@types/json5
238 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/color-name
239 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/color-convert
240 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/ansi-styles
241 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag
242 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color
243 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk
244 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/tapable
245 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/enhanced-resolve
246 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules/json5
247 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules/strip-bom
248 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths
249 silly refresh-package-json /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin
250 timing action:refresh-package-json Completed in 44ms
251 silly doParallel preinstall 13
252 silly preinstall @types/[email protected]
253 info lifecycle @types/[email protected]~preinstall: @types/[email protected]
254 silly preinstall [email protected]
255 info lifecycle [email protected]~preinstall: [email protected]
256 silly preinstall [email protected]
257 info lifecycle [email protected]~preinstall: [email protected]
258 silly preinstall [email protected]
259 info lifecycle [email protected]~preinstall: [email protected]
260 silly preinstall [email protected]
261 info lifecycle [email protected]~preinstall: [email protected]
262 silly preinstall [email protected]
263 info lifecycle [email protected]~preinstall: [email protected]
264 silly preinstall [email protected]
265 info lifecycle [email protected]~preinstall: [email protected]
266 silly preinstall [email protected]
267 info lifecycle [email protected]~preinstall: [email protected]
268 silly preinstall [email protected]
269 info lifecycle [email protected]~preinstall: [email protected]
270 silly preinstall [email protected]
271 info lifecycle [email protected]~preinstall: [email protected]
272 silly preinstall [email protected]
273 info lifecycle [email protected]~preinstall: [email protected]
274 silly preinstall [email protected]
275 info lifecycle [email protected]~preinstall: [email protected]
276 silly preinstall [email protected]
277 info lifecycle [email protected]~preinstall: [email protected]
278 timing action:preinstall Completed in 1ms
279 silly doSerial build 104
280 silly build @types/[email protected]
281 info linkStuff @types/[email protected]
282 silly linkStuff @types/[email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules as its parent node_modules
283 silly build [email protected]
284 info linkStuff [email protected]
285 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
286 silly build [email protected]
287 info linkStuff [email protected]
288 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
289 silly build [email protected]
290 info linkStuff [email protected]
291 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
292 silly build [email protected]
293 info linkStuff [email protected]
294 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
295 silly build [email protected]
296 info linkStuff [email protected]
297 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
298 silly build [email protected]
299 info linkStuff [email protected]
300 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
301 silly build [email protected]
302 info linkStuff [email protected]
303 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
304 silly build [email protected]
305 info linkStuff [email protected]
306 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules as its parent node_modules
307 silly build [email protected]
308 info linkStuff [email protected]
309 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules as its parent node_modules
310 verbose linkBins [ { json5: 'lib/cli.js' },
310 verbose linkBins   '/Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules/.bin',
310 verbose linkBins   false ]
311 silly build [email protected]
312 info linkStuff [email protected]
313 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths/node_modules as its parent node_modules
314 silly build [email protected]
315 info linkStuff [email protected]
316 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules as its parent node_modules
317 silly build [email protected]
318 info linkStuff [email protected]
319 silly linkStuff [email protected] has /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules as its parent node_modules
320 timing action:build Completed in 10ms
321 silly doSerial global-link 104
322 silly doParallel update-linked 0
323 silly doSerial install 104
324 silly install @types/[email protected]
325 info lifecycle @types/[email protected]~install: @types/[email protected]
326 silly install [email protected]
327 info lifecycle [email protected]~install: [email protected]
328 silly install [email protected]
329 info lifecycle [email protected]~install: [email protected]
330 silly install [email protected]
331 info lifecycle [email protected]~install: [email protected]
332 silly install [email protected]
333 info lifecycle [email protected]~install: [email protected]
334 silly install [email protected]
335 info lifecycle [email protected]~install: [email protected]
336 silly install [email protected]
337 info lifecycle [email protected]~install: [email protected]
338 silly install [email protected]
339 info lifecycle [email protected]~install: [email protected]
340 silly install [email protected]
341 info lifecycle [email protected]~install: [email protected]
342 silly install [email protected]
343 info lifecycle [email protected]~install: [email protected]
344 silly install [email protected]
345 info lifecycle [email protected]~install: [email protected]
346 silly install [email protected]
347 info lifecycle [email protected]~install: [email protected]
348 silly install [email protected]
349 info lifecycle [email protected]~install: [email protected]
350 timing action:install Completed in 3ms
351 silly doSerial postinstall 104
352 silly postinstall @types/[email protected]
353 info lifecycle @types/[email protected]~postinstall: @types/[email protected]
354 silly postinstall [email protected]
355 info lifecycle [email protected]~postinstall: [email protected]
356 silly postinstall [email protected]
357 info lifecycle [email protected]~postinstall: [email protected]
358 silly postinstall [email protected]
359 info lifecycle [email protected]~postinstall: [email protected]
360 silly postinstall [email protected]
361 info lifecycle [email protected]~postinstall: [email protected]
362 silly postinstall [email protected]
363 info lifecycle [email protected]~postinstall: [email protected]
364 silly postinstall [email protected]
365 info lifecycle [email protected]~postinstall: [email protected]
366 silly postinstall [email protected]
367 info lifecycle [email protected]~postinstall: [email protected]
368 silly postinstall [email protected]
369 info lifecycle [email protected]~postinstall: [email protected]
370 silly postinstall [email protected]
371 info lifecycle [email protected]~postinstall: [email protected]
372 silly postinstall [email protected]
373 info lifecycle [email protected]~postinstall: [email protected]
374 silly postinstall [email protected]
375 info lifecycle [email protected]~postinstall: [email protected]
376 silly postinstall [email protected]
377 info lifecycle [email protected]~postinstall: [email protected]
378 verbose lifecycle [email protected]~postinstall: unsafe-perm in lifecycle true
379 verbose lifecycle [email protected]~postinstall: PATH: /Users/privera/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin/node_modules/.bin:/Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/.bin:/usr/local/opt/openjdk@11/bin:/Library/Frameworks/Python.framework/Versions/3.9/bin:/Users/privera/.cargo/bin:/Users/privera/.dotnet/tools:/Users/privera/opt/GNAT/2019/bin:/Library/Frameworks/Python.framework/Versions/3.8/bin:/Users/privera/.nvm/versions/node/v10.13.0/bin:/usr/local/opt/[email protected]/sbin:/usr/local/opt/[email protected]/bin:/usr/local/opt/[email protected]/bin:/Users/privera/bin:/Users/privera/.cargo/bin:/usr/local/opt/[email protected]/bin:/usr/local/opt/[email protected]/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/Library/TeX/texbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Apple/usr/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin
380 verbose lifecycle [email protected]~postinstall: CWD: /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin
381 silly lifecycle [email protected]~postinstall: Args: [ '-c', 'husky install' ]
382 info lifecycle [email protected]~postinstall: Failed to exec postinstall script
383 timing action:postinstall Completed in 54ms
384 verbose unlock done using /Users/privera/.npm/_locks/staging-abcbc0b6aa4dfbd3.lock for /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/.staging
385 timing stage:rollbackFailedOptional Completed in 65ms
386 timing stage:runTopLevelLifecycles Completed in 5620ms
387 silly saveTree [email protected]
387 silly saveTree ├─┬ @babel/[email protected]
387 silly saveTree │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ └─┬ @babel/[email protected]
387 silly saveTree │ │   ├── @babel/[email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ ├─┬ [email protected]
387 silly saveTree │ │   │ │ └─┬ [email protected]
387 silly saveTree │ │   │ │   └── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ └─┬ [email protected]
387 silly saveTree │ │   │   └── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ ├─┬ @babel/[email protected]
387 silly saveTree │ │ │ ├── @babel/[email protected]
387 silly saveTree │ │ │ ├── @babel/[email protected]
387 silly saveTree │ │ │ └─┬ @babel/[email protected]
387 silly saveTree │ │ │   ├─┬ @babel/[email protected]
387 silly saveTree │ │ │   │ ├── @babel/[email protected]
387 silly saveTree │ │ │   │ └─┬ @babel/[email protected]
387 silly saveTree │ │ │   │   └── @babel/[email protected]
387 silly saveTree │ │ │   ├── @babel/[email protected]
387 silly saveTree │ │ │   ├── @babel/[email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ ├── @babel/[email protected]
387 silly saveTree │ │ └── @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ └── @babel/[email protected]
387 silly saveTree ├─┬ @babel/[email protected]
387 silly saveTree │ ├── @babel/[email protected]
387 silly saveTree │ └── @babel/[email protected]
387 silly saveTree ├─┬ @typescript-eslint/[email protected]
387 silly saveTree │ ├─┬ @typescript-eslint/[email protected]
387 silly saveTree │ │ ├── @types/[email protected]
387 silly saveTree │ │ ├─┬ @typescript-eslint/[email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ @typescript-eslint/[email protected]
387 silly saveTree │ └── @types/[email protected]
387 silly saveTree ├── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ └─┬ [email protected]
387 silly saveTree │   │ │   └── [email protected]
387 silly saveTree │   │ ├── [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   └─┬ [email protected]
387 silly saveTree │   │     └─┬ [email protected]
387 silly saveTree │   │       └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ └─┬ [email protected]
387 silly saveTree │   │ │   └─┬ [email protected]
387 silly saveTree │   │ │     └── [email protected]
387 silly saveTree │   │ └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └─┬ [email protected]
387 silly saveTree │     └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ @types/[email protected]
387 silly saveTree │ │ ├── @types/[email protected]
387 silly saveTree │ │ ├── @types/[email protected]
387 silly saveTree │ │ ├── @types/[email protected]
387 silly saveTree │ │ ├─┬ @types/[email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ @types/[email protected]
387 silly saveTree │ │ │ ├── @types/[email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├─┬ @types/[email protected]
387 silly saveTree │   │ └── @types/[email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ └── [email protected]
387 silly saveTree │   │ ├── [email protected]
387 silly saveTree │   │ ├── [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └─┬ [email protected]
387 silly saveTree │ │       ├── [email protected]
387 silly saveTree │ │       └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │ │     └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │     └─┬ [email protected]
387 silly saveTree │ │ │       └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├── @types/[email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ │ ├── [email protected]
387 silly saveTree │ │ │   │ │ │ └── [email protected]
387 silly saveTree │ │ │   │ │ └── [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   └── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ └─┬ [email protected]
387 silly saveTree │ │ │   │ │   └── [email protected]
387 silly saveTree │ │ │   │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ └── [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   ├─┬ [email protected]
387 silly saveTree │ │ │   │   │ ├── [email protected]
387 silly saveTree │ │ │   │   │ ├── [email protected]
387 silly saveTree │ │ │   │   │ └── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   └─┬ [email protected]
387 silly saveTree │ │ │   │     ├── [email protected]
387 silly saveTree │ │ │   │     └─┬ [email protected]
387 silly saveTree │ │ │   │       ├── [email protected]
387 silly saveTree │ │ │   │       ├── [email protected]
387 silly saveTree │ │ │   │       └── [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │     └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └─┬ [email protected]
387 silly saveTree │ │       └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ ├── [email protected]
387 silly saveTree │ │ │   │ │ └── [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   └── [email protected]
387 silly saveTree │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │     └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ ├── [email protected]
387 silly saveTree │ │ │   │ ├─┬ [email protected]
387 silly saveTree │ │ │   │ │ └── [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   └── [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │     └─┬ [email protected]
387 silly saveTree │ │ │       ├── [email protected]
387 silly saveTree │ │ │       └─┬ [email protected]
387 silly saveTree │ │ │         └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │ │   │ └── [email protected]
387 silly saveTree │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │ │   │ └── [email protected]
387 silly saveTree │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ ├─┬ [email protected]
387 silly saveTree │ │   │ │ ├── [email protected]
387 silly saveTree │ │   │ │ ├── [email protected]
387 silly saveTree │ │   │ │ └─┬ [email protected]
387 silly saveTree │ │   │ │   └── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ └─┬ [email protected]
387 silly saveTree │ │   │   ├── [email protected]
387 silly saveTree │ │   │   └── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   └─┬ [email protected]
387 silly saveTree │     └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   └─┬ [email protected]
387 silly saveTree │   │     └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   └─┬ [email protected]
387 silly saveTree │     └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │     ├── [email protected]
387 silly saveTree │ │ │ │ │ │ │     └── [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │     ├── [email protected]
387 silly saveTree │ │ │ │ │ │     └── [email protected]
387 silly saveTree │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ │   │ └── [email protected]
387 silly saveTree │ │ │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │     ├── [email protected]
387 silly saveTree │ │ │ │ │ │     ├── [email protected]
387 silly saveTree │ │ │ │ │ │     └── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   ├── [email protected]
387 silly saveTree │ │ │   │   └── [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └─┬ [email protected]
387 silly saveTree │ │ │   │   └── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │ │   ├── [email protected]
387 silly saveTree │ │ │ │   └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├── @types/[email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ └─┬ [email protected]
387 silly saveTree │ │   │   └── [email protected]
387 silly saveTree │ │   └─┬ [email protected]
387 silly saveTree │ │     └─┬ [email protected]
387 silly saveTree │ │       └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ └─┬ [email protected]
387 silly saveTree │   │ │   └── [email protected]
387 silly saveTree │   │ ├── [email protected]
387 silly saveTree │   │ └── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   ├── [email protected]
387 silly saveTree │   │   └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├─┬ [email protected]
387 silly saveTree │ │ │   │ └── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ ├── [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ │ └── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ ├── [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ └── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   └─┬ [email protected]
387 silly saveTree │ │ │     └── [email protected]
387 silly saveTree │ │ ├─┬ [email protected]
387 silly saveTree │ │ │ └─┬ [email protected]
387 silly saveTree │ │ │   ├── [email protected]
387 silly saveTree │ │ │   └── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └─┬ [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├─┬ [email protected]
387 silly saveTree │ │   │ ├── [email protected]
387 silly saveTree │ │   │ └─┬ [email protected]
387 silly saveTree │ │   │   └── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   ├── [email protected]
387 silly saveTree │ │   └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ ├── [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ ├─┬ [email protected]
387 silly saveTree │ │ └── [email protected]
387 silly saveTree │ └─┬ [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ ├── [email protected]
387 silly saveTree │   │ │ └─┬ [email protected]
387 silly saveTree │   │ │   └── [email protected]
387 silly saveTree │   │ ├─┬ [email protected]
387 silly saveTree │   │ │ └── [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   └─┬ [email protected]
387 silly saveTree │   │     └── [email protected]
387 silly saveTree │   ├─┬ [email protected]
387 silly saveTree │   │ └─┬ [email protected]
387 silly saveTree │   │   ├── [email protected]
387 silly saveTree │   │   └── [email protected]
387 silly saveTree │   ├── [email protected]
387 silly saveTree │   └── [email protected]
387 silly saveTree ├─┬ [email protected]
387 silly saveTree │ └── [email protected]
387 silly saveTree ├── [email protected]
387 silly saveTree └─┬ [email protected]
387 silly saveTree   ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ ├── @webassemblyjs/[email protected]
387 silly saveTree   │ ├── @webassemblyjs/[email protected]
387 silly saveTree   │ └─┬ @webassemblyjs/[email protected]
387 silly saveTree   │   ├── @webassemblyjs/[email protected]
387 silly saveTree   │   ├── @webassemblyjs/[email protected]
387 silly saveTree   │   ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │   │ └─┬ @webassemblyjs/[email protected]
387 silly saveTree   │   │   └── @xtuc/[email protected]
387 silly saveTree   │   ├── @webassemblyjs/[email protected]
387 silly saveTree   │   └── @xtuc/[email protected]
387 silly saveTree   ├── @webassemblyjs/[email protected]
387 silly saveTree   ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ ├── @webassemblyjs/[email protected]
387 silly saveTree   │ ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ │ └─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ │   ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ │   │ └── @xtuc/[email protected]
387 silly saveTree   │ │   ├── @webassemblyjs/[email protected]
387 silly saveTree   │ │   └── @webassemblyjs/[email protected]
387 silly saveTree   │ ├── @webassemblyjs/[email protected]
387 silly saveTree   │ ├─┬ @webassemblyjs/[email protected]
387 silly saveTree   │ │ └── @webassemblyjs/[email protected]
387 silly saveTree   │ └── @webassemblyjs/[email protected]
387 silly saveTree   ├── @webassemblyjs/[email protected]
387 silly saveTree   ├── [email protected]
387 silly saveTree   ├── [email protected]
387 silly saveTree   ├── [email protected]
387 silly saveTree   ├── [email protected]
387 silly saveTree   ├─┬ [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ └─┬ [email protected]
387 silly saveTree   │ │   └── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ ├── [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ │ │ └─┬ [email protected]
387 silly saveTree   │ │ │ │ │ │   ├── [email protected]
387 silly saveTree   │ │ │ │ │ │   └── [email protected]
387 silly saveTree   │ │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ └── [email protected]
387 silly saveTree   │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ │ └── [email protected]
387 silly saveTree   │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ └── [email protected]
387 silly saveTree   │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ └── [email protected]
387 silly saveTree   │ │ ├── [email protected]
387 silly saveTree   │ │ ├── [email protected]
387 silly saveTree   │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ ├── [email protected]
387 silly saveTree   │ │ │ └─┬ [email protected]
387 silly saveTree   │ │ │   └── [email protected]
387 silly saveTree   │ │ ├── [email protected]
387 silly saveTree   │ │ ├─┬ [email protected]
387 silly saveTree   │ │ │ └── [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ ├── [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ ├── [email protected]
387 silly saveTree   │ ├─┬ [email protected]
387 silly saveTree   │ │ └── [email protected]
387 silly saveTree   │ └── [email protected]
387 silly saveTree   └─┬ [email protected]
387 silly saveTree     └─┬ [email protected]
387 silly saveTree       └─┬ [email protected]
387 silly saveTree         ├─┬ [email protected]
387 silly saveTree         │ └── [email protected]
387 silly saveTree         ├─┬ [email protected]
387 silly saveTree         │ ├── [email protected]
387 silly saveTree         │ └─┬ [email protected]
387 silly saveTree         │   ├─┬ [email protected]
387 silly saveTree         │   │ └── [email protected]
387 silly saveTree         │   └── [email protected]
387 silly saveTree         ├── [email protected]
387 silly saveTree         ├─┬ [email protected]
387 silly saveTree         │ └── [email protected]
387 silly saveTree         └── [email protected]
388 verbose stack Error: [email protected] postinstall: `husky install`
388 verbose stack spawn ENOENT
388 verbose stack     at ChildProcess.<anonymous> (/Users/privera/.nvm/versions/node/v10.13.0/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:48:18)
388 verbose stack     at ChildProcess.emit (events.js:182:13)
388 verbose stack     at maybeClose (internal/child_process.js:962:16)
388 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:251:5)
389 verbose pkgid [email protected]
390 verbose cwd /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend
391 verbose Darwin 19.4.0
392 verbose argv "/Users/privera/.nvm/versions/node/v10.13.0/bin/node" "/Users/privera/.nvm/versions/node/v10.13.0/bin/npm" "install"
393 verbose node v10.13.0
394 verbose npm  v6.4.1
395 error file sh
396 error code ELIFECYCLE
397 error errno ENOENT
398 error syscall spawn
399 error [email protected] postinstall: `husky install`
399 error spawn ENOENT
400 error Failed at the [email protected] postinstall script.
400 error This is probably not a problem with npm. There is likely additional logging output above.
401 verbose exit [ 1, true ]

Tracebaxck follows in next message (didnt fit)

pryelluw avatar Mar 12 '21 23:03 pryelluw

[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       com.cheeky:cheeky.ui.frontend:1.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): [test]
[DEBUG] Dependencies (resolve): [test]
[DEBUG] Repositories (dependencies): [adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public, default, releases), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [adobe-public-releases (https://repo.adobe.com/nexus/content/groups/public, default, releases), central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <directory default-value="${project.build.directory}"/>
  <excludeDefaultDirectories default-value="false">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories>
  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
  <followSymLinks default-value="false">${maven.clean.followSymLinks}</followSymLinks>
  <outputDirectory default-value="${project.build.outputDirectory}"/>
  <reportDirectory default-value="${project.build.outputDirectory}"/>
  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
  <skip default-value="false">${maven.clean.skip}</skip>
  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
  <verbose>${maven.clean.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <commandLineRules>${rules}</commandLineRules>
  <fail default-value="true">${enforcer.fail}</fail>
  <failFast default-value="false">${enforcer.failFast}</failFast>
  <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache>
  <mojoExecution default-value="${mojoExecution}"/>
  <project default-value="${project}"/>
  <rules>
    <requireMavenVersion>
      <version>[3.3.9,)</version>
    </requireMavenVersion>
    <requireJavaVersion>
      <message>Maven must be executed with a Java 8 JRE or higher.</message>
      <version>1.8.0</version>
    </requireJavaVersion>
  </rules>
  <session default-value="${session}"/>
  <skip default-value="false">${enforcer.skip}</skip>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm (install node and npm)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <downloadRoot default-value="">${downloadRoot}</downloadRoot>
  <installDirectory>${installDirectory}</installDirectory>
  <nodeDownloadRoot default-value="https://nodejs.org/dist/">${nodeDownloadRoot}</nodeDownloadRoot>
  <nodeVersion>v10.13.0</nodeVersion>
  <npmDownloadRoot default-value="https://registry.npmjs.org/npm/-/">${npmDownloadRoot}</npmDownloadRoot>
  <npmVersion default-value="provided">6.9.0</npmVersion>
  <project default-value="${project}"/>
  <repositorySystemSession default-value="${repositorySystemSession}"/>
  <serverId default-value="">${serverId}</serverId>
  <session default-value="${session}">${session}</session>
  <skip default-value="${skip.installnodenpm}">${skip.installnodenpm}</skip>
  <skipTests default-value="false">${skipTests}</skipTests>
  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
  <workingDirectory default-value="${basedir}">${workingDirectory}</workingDirectory>
  <execution default-value="${mojoExecution}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.github.eirslett:frontend-maven-plugin:1.7.6:npm (npm install)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <arguments default-value="install">${frontend.npm.arguments}</arguments>
  <installDirectory>${installDirectory}</installDirectory>
  <npmInheritsProxyConfigFromMaven default-value="true">${frontend.npm.npmInheritsProxyConfigFromMaven}</npmInheritsProxyConfigFromMaven>
  <npmRegistryURL default-value="">${npmRegistryURL}</npmRegistryURL>
  <project default-value="${project}"/>
  <repositorySystemSession default-value="${repositorySystemSession}"/>
  <session default-value="${session}">${session}</session>
  <skip default-value="${skip.npm}">${skip.npm}</skip>
  <skipTests default-value="false">${skipTests}</skipTests>
  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
  <workingDirectory default-value="${basedir}">${workingDirectory}</workingDirectory>
  <execution default-value="${mojoExecution}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.github.eirslett:frontend-maven-plugin:1.7.6:npm (npm run prod)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <arguments default-value="install">run prod</arguments>
  <installDirectory>${installDirectory}</installDirectory>
  <npmInheritsProxyConfigFromMaven default-value="true">${frontend.npm.npmInheritsProxyConfigFromMaven}</npmInheritsProxyConfigFromMaven>
  <npmRegistryURL default-value="">${npmRegistryURL}</npmRegistryURL>
  <project default-value="${project}"/>
  <repositorySystemSession default-value="${repositorySystemSession}"/>
  <session default-value="${session}">${session}</session>
  <skip default-value="${skip.npm}">${skip.npm}</skip>
  <skipTests default-value="false">${skipTests}</skipTests>
  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
  <workingDirectory default-value="${basedir}">${workingDirectory}</workingDirectory>
  <execution default-value="${mojoExecution}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-assembly-plugin:3.1.1:single (default)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <appendAssemblyId default-value="true">false</appendAssemblyId>
  <attach default-value="true">${assembly.attach}</attach>
  <basedir default-value="${project.basedir}"/>
  <descriptors>
    <descriptor>assembly.xml</descriptor>
  </descriptors>
  <dryRun default-value="false">${assembly.dryRun}</dryRun>
  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
  <escapeString>${assembly.escapeString}</escapeString>
  <finalName default-value="${project.build.finalName}"/>
  <ignoreDirFormatExtensions default-value="true"/>
  <ignoreMissingDescriptor default-value="false">${assembly.ignoreMissingDescriptor}</ignoreMissingDescriptor>
  <ignorePermissions default-value="false">${assembly.ignorePermissions}</ignorePermissions>
  <includeProjectBuildFilters default-value="true">${assembly.includeProjectBuildFilters}</includeProjectBuildFilters>
  <localRepository default-value="${localRepository}"/>
  <mavenSession default-value="${session}"/>
  <outputDirectory default-value="${project.build.directory}"/>
  <plugin default-value="${plugin}"/>
  <project default-value="${project}"/>
  <reactorProjects default-value="${reactorProjects}"/>
  <recompressZippedFiles default-value="true"/>
  <remoteRepositories default-value="${project.remoteArtifactRepositories}"/>
  <runOnlyAtExecutionRoot default-value="false">${assembly.runOnlyAtExecutionRoot}</runOnlyAtExecutionRoot>
  <siteDirectory default-value="${project.reporting.outputDirectory}"/>
  <skipAssembly default-value="false">${assembly.skipAssembly}</skipAssembly>
  <tarLongFileMode default-value="warn">${assembly.tarLongFileMode}</tarLongFileMode>
  <tempRoot default-value="${project.build.directory}/archive-tmp"/>
  <updateOnly default-value="false">${assembly.updateOnly}</updateOnly>
  <useJvmChmod default-value="false">${assembly.useJvmChmod}</useJvmChmod>
  <workDirectory default-value="${project.build.directory}/assembly/work"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-install-plugin:2.5.2:install (default-install)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <artifact default-value="${project.artifact}"/>
  <attachedArtifacts default-value="${project.attachedArtifacts}"/>
  <createChecksum default-value="false">${createChecksum}</createChecksum>
  <installAtEnd default-value="false">${installAtEnd}</installAtEnd>
  <localRepository>${localRepository}</localRepository>
  <packaging default-value="${project.packaging}"/>
  <pomFile default-value="${project.file}"/>
  <project default-value="${project}"/>
  <reactorProjects default-value="${reactorProjects}"/>
  <skip default-value="false">${maven.install.skip}</skip>
  <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=6785, ConflictMarker.markTime=8055, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=1921, ConflictIdSorter.topsortTime=6508, ConflictIdSorter.conflictIdCount=0, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=11624, ConflictResolver.conflictItemCount=0, DefaultDependencyCollector.collectTime=3835, DefaultDependencyCollector.transformTime=54545}
[DEBUG] com.cheeky:cheeky.ui.frontend:pom:1.0.0-SNAPSHOT
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ cheeky.ui.frontend ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->
[DEBUG]   (f) directory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target
[DEBUG]   (f) excludeDefaultDirectories = false
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) followSymLinks = false
[DEBUG]   (f) outputDirectory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/classes
[DEBUG]   (f) reportDirectory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/classes
[DEBUG]   (f) retryOnError = true
[DEBUG]   (f) skip = false
[DEBUG]   (f) testOutputDirectory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/test-classes
[DEBUG] -- end configuration --
[DEBUG] Skipping non-existing directory /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target
[DEBUG] Skipping non-existing directory /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/classes
[DEBUG] Skipping non-existing directory /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/test-classes
[DEBUG] Skipping non-existing directory /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/target/classes
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven) @ cheeky.ui.frontend ---
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@55054057]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce' with basic configurator -->
[DEBUG]   (f) commandLineRules = []
[DEBUG]   (s) fail = true
[DEBUG]   (s) failFast = false
[DEBUG]   (f) ignoreCache = false
[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3:enforce {execution: enforce-maven}
[DEBUG]   (s) project = MavenProject: com.cheeky:cheeky.ui.frontend:1.0.0-SNAPSHOT @ /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/pom.xml
[DEBUG]   (s) version = [3.3.9,)
[DEBUG]   (s) message = Maven must be executed with a Java 8 JRE or higher.
[DEBUG]   (s) version = 1.8.0
[DEBUG]   (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@4b518645, org.apache.maven.plugins.enforcer.RequireJavaVersion@294a3f2a]
[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@708eb310
[DEBUG]   (s) skip = false
[DEBUG] -- end configuration --
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.
[DEBUG] Key org.apache.maven.plugins.enforcer.RequireMavenVersion -934534907 was found in the cache
[DEBUG] The cached results are still valid. Skipping the rule: org.apache.maven.plugins.enforcer.RequireMavenVersion
[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireJavaVersion
[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireJavaVersion is cacheable.
[DEBUG] Key org.apache.maven.plugins.enforcer.RequireJavaVersion 46678205 was found in the cache
[DEBUG] The cached results are still valid. Skipping the rule: org.apache.maven.plugins.enforcer.RequireJavaVersion
[INFO] 
[INFO] --- frontend-maven-plugin:1.7.6:install-node-and-npm (install node and npm) @ cheeky.ui.frontend ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=41896, ConflictMarker.markTime=23613, ConflictMarker.nodeCount=34, ConflictIdSorter.graphTime=13639, ConflictIdSorter.topsortTime=19424, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=273501, ConflictResolver.conflictItemCount=33, DefaultDependencyCollector.collectTime=44170922, DefaultDependencyCollector.transformTime=401567}
[DEBUG] com.github.eirslett:frontend-maven-plugin:jar:1.7.6
[DEBUG]    com.github.eirslett:frontend-plugin-core:jar:1.7.6:compile
[DEBUG]       org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
[DEBUG]       org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
[DEBUG]       org.apache.commons:commons-compress:jar:1.18:compile
[DEBUG]       commons-io:commons-io:jar:1.3.2:compile
[DEBUG]       org.apache.commons:commons-exec:jar:1.3:compile
[DEBUG]       org.apache.httpcomponents:httpclient:jar:4.5.2:compile
[DEBUG]          org.apache.httpcomponents:httpcore:jar:4.4.4:compile
[DEBUG]          commons-logging:commons-logging:jar:1.2:compile
[DEBUG]          commons-codec:commons-codec:jar:1.9:compile
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.0.22:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.5:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.5.0:compile
[DEBUG]       org.apache.maven:maven-model:jar:3.5.0:compile
[DEBUG]          org.apache.commons:commons-lang3:jar:3.5:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:3.5.0:compile
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.3:compile
[DEBUG]          javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]             javax.annotation:jsr250-api:jar:1.0:compile
[DEBUG]             javax.inject:javax.inject:jar:1:compile
[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3:compile
[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
[DEBUG]    org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.2:compile
[DEBUG]    org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile
[DEBUG] Created new class realm plugin>com.github.eirslett:frontend-maven-plugin:1.7.6
[DEBUG] Importing foreign packages into class realm plugin>com.github.eirslett:frontend-maven-plugin:1.7.6
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm plugin>com.github.eirslett:frontend-maven-plugin:1.7.6
[DEBUG]   Included: com.github.eirslett:frontend-maven-plugin:jar:1.7.6
[DEBUG]   Included: com.github.eirslett:frontend-plugin-core:jar:1.7.6
[DEBUG]   Included: org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13
[DEBUG]   Included: org.codehaus.jackson:jackson-core-asl:jar:1.9.13
[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.18
[DEBUG]   Included: commons-io:commons-io:jar:1.3.2
[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.3
[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.5.2
[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.4.4
[DEBUG]   Included: commons-logging:commons-logging:jar:1.2
[DEBUG]   Included: commons-codec:commons-codec:jar:1.9
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.5
[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.3
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG]   Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.2
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
[DEBUG] Configuring mojo com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm from plugin realm ClassRealm[plugin>com.github.eirslett:frontend-maven-plugin:1.7.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@55054057]
[DEBUG] Configuring mojo 'com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm' with basic configurator -->
[DEBUG]   (f) nodeDownloadRoot = https://nodejs.org/dist/
[DEBUG]   (f) nodeVersion = v10.13.0
[DEBUG]   (f) npmDownloadRoot = https://registry.npmjs.org/npm/-/
[DEBUG]   (f) npmVersion = 6.9.0
[DEBUG]   (f) project = MavenProject: com.cheeky:cheeky.ui.frontend:1.0.0-SNAPSHOT @ /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/pom.xml
[DEBUG]   (f) repositorySystemSession = org.eclipse.aether.DefaultRepositorySystemSession@36e358de
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@708eb310
[DEBUG]   (f) skipTests = false
[DEBUG]   (f) testFailureIgnore = false
[DEBUG]   (f) workingDirectory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend
[DEBUG]   (f) execution = com.github.eirslett:frontend-maven-plugin:1.7.6:install-node-and-npm {execution: install node and npm}
[DEBUG] -- end configuration --
[DEBUG] Executing command line [/Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node/node, --version]
[DEBUG] Exit value 0
[INFO] Node v10.13.0 is already installed.
[INFO] NPM 6.9.0 is already installed.
[INFO] 
[INFO] --- frontend-maven-plugin:1.7.6:npm (npm install) @ cheeky.ui.frontend ---
[DEBUG] Configuring mojo com.github.eirslett:frontend-maven-plugin:1.7.6:npm from plugin realm ClassRealm[plugin>com.github.eirslett:frontend-maven-plugin:1.7.6, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@55054057]
[DEBUG] Configuring mojo 'com.github.eirslett:frontend-maven-plugin:1.7.6:npm' with basic configurator -->
[DEBUG]   (f) arguments = install
[DEBUG]   (f) npmInheritsProxyConfigFromMaven = true
[DEBUG]   (f) project = MavenProject: com.cheeky:cheeky.ui.frontend:1.0.0-SNAPSHOT @ /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/pom.xml
[DEBUG]   (f) repositorySystemSession = org.eclipse.aether.DefaultRepositorySystemSession@36e358de
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@708eb310
[DEBUG]   (f) skipTests = false
[DEBUG]   (f) testFailureIgnore = false
[DEBUG]   (f) workingDirectory = /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend
[DEBUG]   (f) execution = com.github.eirslett:frontend-maven-plugin:1.7.6:npm {execution: npm install}
[DEBUG] -- end configuration --
[INFO] Running 'npm install' in /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend
[DEBUG] Executing command line [/Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node/node, /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node/node_modules/npm/bin/npm-cli.js, install]
[INFO] 
[INFO] > [email protected] postinstall /Users/privera/Documents/celerity/aem-learning/cheeky-aem/cheeky/ui.frontend/node_modules/tsconfig-paths-webpack-plugin
[INFO] > husky install
[INFO] 
[ERROR] sh: husky: command not found
[ERROR] npm ERR! file sh
[ERROR] npm ERR! code ELIFECYCLE
[ERROR] npm ERR! errno ENOENT
[ERROR] npm ERR! syscall spawn
[ERROR] npm ERR! [email protected] postinstall: `husky install`
[ERROR] npm ERR! spawn ENOENT
[ERROR] npm ERR! 
[ERROR] npm ERR! Failed at the [email protected] postinstall script.
[ERROR] npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
[ERROR] 
[ERROR] npm ERR! A complete log of this run can be found in:
[ERROR] npm ERR!     /Users/privera/.npm/_logs/2021-03-12T23_31_31_942Z-debug.log
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for cheeky 1.0.0-SNAPSHOT:
[INFO] 
[INFO] cheeky ............................................. SUCCESS [  0.507 s]
[INFO] Cheeky - Core ...................................... SUCCESS [  8.046 s]
[INFO] Cheeky - UI Frontend ............................... FAILURE [  5.408 s]
[INFO] Cheeky - Repository Structure Package .............. SKIPPED
[INFO] Cheeky - UI apps ................................... SKIPPED
[INFO] Cheeky - UI content ................................ SKIPPED
[INFO] Cheeky - UI config ................................. SKIPPED
[INFO] Cheeky - All ....................................... SKIPPED
[INFO] Cheeky - Integration Tests ......................... SKIPPED
[INFO] Cheeky - Dispatcher ................................ SKIPPED
[INFO] Cheeky - UI Tests .................................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  15.548 s
[INFO] Finished at: 2021-03-12T18:31:32-05:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.6:npm (npm install) on project cheeky.ui.frontend: Failed to run task: 'npm install' failed. org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.6:npm (npm install) on project cheeky.ui.frontend: Failed to run task
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:64)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: org.apache.maven.plugin.MojoFailureException: Failed to run task
    at com.github.eirslett.maven.plugins.frontend.mojo.AbstractFrontendMojo.execute (AbstractFrontendMojo.java:100)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:64)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: com.github.eirslett.maven.plugins.frontend.lib.TaskRunnerException: 'npm install' failed.
    at com.github.eirslett.maven.plugins.frontend.lib.NodeTaskExecutor.execute (NodeTaskExecutor.java:63)
    at com.github.eirslett.maven.plugins.frontend.mojo.NpmMojo.execute (NpmMojo.java:62)
    at com.github.eirslett.maven.plugins.frontend.mojo.AbstractFrontendMojo.execute (AbstractFrontendMojo.java:94)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:64)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: com.github.eirslett.maven.plugins.frontend.lib.ProcessExecutionException: org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1)
    at com.github.eirslett.maven.plugins.frontend.lib.ProcessExecutor.execute (ProcessExecutor.java:82)
    at com.github.eirslett.maven.plugins.frontend.lib.ProcessExecutor.executeAndRedirectOutput (ProcessExecutor.java:64)
    at com.github.eirslett.maven.plugins.frontend.lib.NodeExecutor.executeAndRedirectOutput (NodeExecutor.java:29)
    at com.github.eirslett.maven.plugins.frontend.lib.NodeTaskExecutor.execute (NodeTaskExecutor.java:58)
    at com.github.eirslett.maven.plugins.frontend.mojo.NpmMojo.execute (NpmMojo.java:62)
    at com.github.eirslett.maven.plugins.frontend.mojo.AbstractFrontendMojo.execute (AbstractFrontendMojo.java:94)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:64)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1)
    at org.apache.commons.exec.DefaultExecutor.executeInternal (DefaultExecutor.java:404)
    at org.apache.commons.exec.DefaultExecutor.execute (DefaultExecutor.java:166)
    at com.github.eirslett.maven.plugins.frontend.lib.ProcessExecutor.execute (ProcessExecutor.java:74)
    at com.github.eirslett.maven.plugins.frontend.lib.ProcessExecutor.executeAndRedirectOutput (ProcessExecutor.java:64)
    at com.github.eirslett.maven.plugins.frontend.lib.NodeExecutor.executeAndRedirectOutput (NodeExecutor.java:29)
    at com.github.eirslett.maven.plugins.frontend.lib.NodeTaskExecutor.execute (NodeTaskExecutor.java:58)
    at com.github.eirslett.maven.plugins.frontend.mojo.NpmMojo.execute (NpmMojo.java:62)
    at com.github.eirslett.maven.plugins.frontend.mojo.AbstractFrontendMojo.execute (AbstractFrontendMojo.java:94)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:64)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[ERROR] 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :cheeky.ui.frontend

pryelluw avatar Mar 12 '21 23:03 pryelluw

Sorry - missed the fact that you're building react version of the archetype (I was testing the standard one recently). Maybe one of you could actually make a contribution to the archetype (based on the steps to fix mentioned by the requestor? )

tomaszsoczyk-cognifide avatar Mar 12 '21 23:03 tomaszsoczyk-cognifide

@jaydubb12 @tomaszsoczyk-cognifide

I was able to install it by doing the following:

You need node v 10.13.0

cd into ui.frontend

run yarn install

This will fail with error:

error [email protected]: The engine "node" is incompatible with this module. Expected version ">=10.19.0". Got "10.13.0"
error Found incompatible module.

run npm install

This should succeed.

Afterwards, I ran mvn clean install and it worked as expected.

pryelluw avatar Mar 12 '21 23:03 pryelluw

@tomaszsoczyk-cognifide and @pryelluw There are definitely a few ways to approach the fix, and as we continue to evolve into a new world using the npm aspects of the maven.frontend plugin and have some of the nuances associated with the http proxy aspects of the npm library, which has been referenced as a bug in several previous versions of the plug in, and reported as fixed...I personally was only able to resolve the issue via downloading node, and letting node determine the version of npm....but feeling others may not agree with that approach, i wanted to raise the awareness of the issue...and if the owners of the repository feel that is an appropriate approach, I'll be happy to raise the PR.

Conversely, as a complete sidebar, I recently migrated from being a Windows user to a Mac user when I switched to a new company, and that MacBook pro leverages a M1 processor, which still has some buggy aspects to working with node and various other libraries....therefore some may consider some of my issues I am facing as unique or "fringe" ...hence again...why I am raising this herein...and as I noted, if the owners of the repo feel my approach is appropriate and will work for others, then I am more than happy to contribute my stated resolution via a PR

jaydubb12 avatar Mar 19 '21 03:03 jaydubb12

@jaydubb12 Thank you very much for your effort and the hands up! As I'm also not able to reproduce this issue on my machine and the build is passing on various other systems it would be great if you can provide a PR for the fix which solves you problem. Sure we will merge it if it's working fine.

bpauli avatar Mar 19 '21 16:03 bpauli

Having a lot of issues to build the project for the very first time. Archetype 27

[INFO] [INFO] -------------------< com.mysite:mysite.ui.frontend >-------------------- [INFO] Building My Site - UI Frontend 1.0.0-SNAPSHOT [3/12] [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ mysite.ui.frontend --- [INFO] [INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven) @ mysite.ui.frontend --- [INFO] [INFO] --- frontend-maven-plugin:1.7.6:install-node-and-npm (install node and npm) @ mysite.ui.frontend --- [INFO] Installing node version v10.13.0 [INFO] Copying node binary from C:\Users\vinicius.silva.m2\repository\com\github\eirslett\node\10.13.0\node-10.13.0-win-x64.exe to C:\Users\vinicius.silva\Desktop\mysite\ui.frontend\node\node.exe [INFO] Installed node locally. [INFO] Installing npm version 6.9.0 [INFO] Downloading https://registry.npmjs.org/npm/-/npm-6.9.0.tgz to C:\Users\vinicius.silva.m2\repository\com\github\eirslett\npm\6.9.0\npm-6.9.0.tar.gz [INFO] No proxies configured [INFO] No proxy was configured, downloading directly [INFO] Unpacking C:\Users\vinicius.silva.m2\repository\com\github\eirslett\npm\6.9.0\npm-6.9.0.tar.gz into C:\Users\vinicius.silva\Desktop\mysite\ui.frontend\node\node_modules [INFO] Installed npm locally. [INFO] [INFO] --- frontend-maven-plugin:1.7.6:npm (npm install) @ mysite.ui.frontend --- [INFO] Running 'npm install' in C:\Users\vinicius.silva\Desktop\mysite\ui.frontend [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for mysite 1.0.0-SNAPSHOT: [INFO] [INFO] mysite ............................................. SUCCESS [ 0.239 s] [INFO] My Site - Core ..................................... SUCCESS [ 6.728 s] [INFO] My Site - UI Frontend .............................. FAILURE [ 7.182 s] [INFO] My Site - Repository Structure Package ............. SKIPPED [INFO] My Site - UI apps .................................. SKIPPED [INFO] My Site - UI content ............................... SKIPPED [INFO] My Site - UI config ................................ SKIPPED [INFO] My Site - All ...................................... SKIPPED [INFO] My Site - Integration Tests ........................ SKIPPED [INFO] My Site - Dispatcher ............................... SKIPPED [INFO] My Site - UI Tests ................................. SKIPPED [INFO] My Site - Project Analyser ......................... SKIPPED [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 16.730 s [INFO] Finished at: 2021-04-11T22:46:09-03:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.6:npm (npm install) on project mysite.ui.frontend: Failed to run task: 'npm install' failed. java.io.IOException: Cannot run program "C:\Users\vinicius.silva\Desktop\mysite\ui.frontend\node\node.exe" (in directory "C:\Users\vinicius.silva\Desktop\mysite\ui.frontend"): CreateProcess error=193, %1 n▒o ▒ um aplicativo Win32 v▒lido -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn -rf :mysite.ui.frontend

Any help about this subject?

Windows 10 Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f) Maven home: C:\apache-maven-3.6.3 Java version: 11.0.10, vendor: Oracle Corporation, runtime: C:\Program Files\Java\jdk-11.0.10 Default locale: pt_BR, platform encoding: Cp1252 OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

tauba avatar Apr 12 '21 02:04 tauba

For Archetype 23, I was able to resolve this issue by specifying explicit versions of frontend-maven-plugin, node, and npm:

<build>
	<sourceDirectory>src/main/content/jcr_root</sourceDirectory>
	<plugins>
		<plugin>
			<groupId>com.github.eirslett</groupId>
			<artifactId>frontend-maven-plugin</artifactId>
			<version>1.11.0</version>
			<configuration>
				<nodeVersion>v12.22.3</nodeVersion>
				<npmVersion>6.14.13</npmVersion>
				<!-- <downloadRoot>https://nodejs.org/dist/</downloadRoot> -->
				<npmDownloadRoot>https://registry.npmjs.org/npm/-/</npmDownloadRoot>
			</configuration>
			<executions>
				<execution>
					<id>npm run prod</id>
					<phase>generate-resources</phase>
					<goals>
						<goal>npm</goal>
					</goals>
					<configuration>
						<arguments>run prod</arguments>
					</configuration>
				</execution>
			</executions>
		</plugin>
                ...
	</plugins>
</build>

robertbrestle avatar Jul 07 '21 22:07 robertbrestle

yep @robertbrestle

yesterday on the latest Windows 11 (on M1 Mac works fine) I also got the same problem. adding

	<configuration>
				<nodeVersion>v12.22.3</nodeVersion>
				<npmVersion>6.14.13</npmVersion>
				<!-- <downloadRoot>https://nodejs.org/dist/</downloadRoot> -->
				<npmDownloadRoot>https://registry.npmjs.org/npm/-/</npmDownloadRoot>
	</configuration>

resolves the problem, FYI @bpauli

krystian-panek-wttech avatar Feb 21 '23 07:02 krystian-panek-wttech

hmm resolved a problem one time; the second time it wasn't helpful. then I used https://github.com/eirslett/frontend-maven-plugin/issues/487#issuecomment-384977495 and it helped. now I am convinced that this is not a problem with the archetype itself but with the frontend plugin. Probably when downloading Node there is no protection against interrupted downloads and this is a root cause.

krystian-panek-wttech avatar Feb 21 '23 08:02 krystian-panek-wttech

@krystian-panek-wttech as of a week ago, this patch no longer works for my Archetype 23 project. I ended up migrating my project to Archetype 39 to fully resolve this issue. Luckily AEM has great backwards compatibility making the migration a breeze.

robertbrestle avatar Feb 22 '23 05:02 robertbrestle