Rollup-plugin-typescript2: Module 'tslib' cannot be found when importing from a sibling directory

Created on 11 Jun 2020  Β·  4Comments  Β·  Source: ezolenko/rollup-plugin-typescript2

What happens and why it is wrong

This is similar to issue #12, #214, and #216 but none of the solutions mentioned there worked for me and I have clear steps to reproduce so I hope this bug is helpful.

Steps to reproduce:

  1. git clone https://github.com/birtles/rollup-ts-mono
  2. cd rollup-ts-mono/a
  3. yarn install
  4. yarn build

Expected results: it builds successfully.

Actual results:

[!] (plugin rpt2) Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {

Note that:

  • npx tsc works
  • A more complex setup with ts-jest works (i.e. yarn test works but npx rollup -c produces the above error)
  • This setup deliberately doesn't include node-resolve etc. since I don't want the external dependencies to be bundled into the result. (This is for building an AWS lambda function where the node_modules will be uploaded along with the compiled file and keeping the compiled file smaller makes debugging easier.)
  • The directory structure is quite inflexible due to this all being run through sam-cli
  • It all worked fine until I started to use fancy syntax in the common/func.ts file
  • Adding a root tsconfig.json and extending from it doesn't seem to make a difference
  • Tweaking paths and baseUrl as per this comment can seem to help, but appears to break other things.

Environment

Node v12.14.0 running on Ubuntu 18.04 under WSL 1.

Versions

  • typescript: 3.9.5
  • rollup: 2.15.0
  • rollup-plugin-typescript2: 0.27.1

rollup.config.js

import typescript from 'rollup-plugin-typescript2';

export default {
  input: './index.ts',
  output: {
    file: 'index.js',
    format: 'cjs',
  },
  plugins: [
    typescript({
      include: ['*.ts', '../common/*.ts'],
      verbosity: 3,
    }),
  ],
};

tsconfig.json

{
  "compilerOptions": {
    "alwaysStrict": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "module": "ESNext",
    "moduleResolution": "node",
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true,
    "pretty": true,
    "strictNullChecks": true,
    "target": "es2018"
  },
  "include": [
    "./*.ts",
    "../common/*.ts"
  ],
  "exclude": [
    "node_modules"
  ]
}

package.json

{
  "name": "a",
  "version": "1.0.0",
  "main": "index.ts",
  "license": "MIT",
  "scripts": {
    "build": "rollup -c"
  },
  "devDependencies": {
    "rollup": "^2.15.0",
    "rollup-plugin-typescript2": "^0.27.1",
    "typescript": "^3.9.5"
  }
}

plugin output with verbosity 3

yarn run v1.22.4
$ rollup -c

./index.ts β†’ index.js...
rpt2: built-in options overrides: {
    "noEmitHelpers": false,
    "importHelpers": true,
    "noResolve": false,
    "noEmit": false,
    "inlineSourceMap": false,
    "outDir": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/placeholder",
    "moduleResolution": 2,
    "allowNonTsExtensions": true
}
rpt2: parsed tsconfig: {
    "options": {
        "alwaysStrict": true,
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "module": 99,
        "moduleResolution": 2,
        "noImplicitAny": true,
        "noImplicitReturns": true,
        "noUnusedLocals": true,
        "pretty": true,
        "strictNullChecks": true,
        "target": 5,
        "configFilePath": "/c/Users/Brian/rollup-ts-mono/a/tsconfig.json",
        "noEmitHelpers": false,
        "importHelpers": true,
        "noResolve": false,
        "noEmit": false,
        "inlineSourceMap": false,
        "outDir": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/placeholder",
        "allowNonTsExtensions": true
    },
    "fileNames": [
        "/c/Users/Brian/rollup-ts-mono/a/index.ts",
        "/c/Users/Brian/rollup-ts-mono/common/func.ts"
    ],
    "typeAcquisition": {
        "enable": false,
        "include": [],
        "exclude": []
    },
    "raw": {
        "compilerOptions": {
            "alwaysStrict": true,
            "allowSyntheticDefaultImports": true,
            "esModuleInterop": true,
            "module": "ESNext",
            "moduleResolution": "node",
            "noImplicitAny": true,
            "noImplicitReturns": true,
            "noUnusedLocals": true,
            "pretty": true,
            "strictNullChecks": true,
            "target": "es2018"
        },
        "include": [
            "./*.ts",
            "../common/*.ts"
        ],
        "exclude": [
            "node_modules"
        ],
        "compileOnSave": false
    },
    "errors": [],
    "wildcardDirectories": {
        "/c/Users/Brian/rollup-ts-mono/a": 0,
        "/c/Users/Brian/rollup-ts-mono/common": 0
    },
    "compileOnSave": false,
    "configFileSpecs": {
        "includeSpecs": [
            "./*.ts",
            "../common/*.ts"
        ],
        "excludeSpecs": [
            "node_modules"
        ],
        "validatedIncludeSpecs": [
            "./*.ts",
            "../common/*.ts"
        ],
        "validatedExcludeSpecs": [
            "node_modules"
        ],
        "wildcardDirectories": {
            "/c/Users/Brian/rollup-ts-mono/a": 0,
            "/c/Users/Brian/rollup-ts-mono/common": 0
        }
    }
}
rpt2: typescript version: 3.9.5
rpt2: tslib version: 1.11.2
rpt2: rollup version: 2.15.0
rpt2: rollup-plugin-typescript2 version: 0.27.1
rpt2: plugin options:
{
    "include": [
        "*.ts",
        "../common/*.ts"
    ],
    "verbosity": 3,
    "check": true,
    "clean": false,
    "cacheRoot": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2",
    "exclude": [
        "*.d.ts",
        "**/*.d.ts"
    ],
    "abortOnError": true,
    "rollupCommonJSResolveHack": false,
    "useTsconfigDeclarationDir": false,
    "tsconfigOverride": {},
    "transformers": [],
    "tsconfigDefaults": {},
    "objectHashIgnoreUnknownHack": false,
    "cwd": "/c/Users/Brian/rollup-ts-mono/a",
    "typescript": "version 3.9.5"
}
rpt2: rollup config:
{
    "external": [],
    "input": "./index.ts",
    "plugins": [
        {
            "name": "rpt2"
        },
        {
            "name": "stdin"
        }
    ],
    "output": [
        {
            "file": "index.js",
            "format": "cjs",
            "plugins": []
        }
    ]
}
rpt2: tsconfig path: /c/Users/Brian/rollup-ts-mono/a/tsconfig.json
rpt2: included:
[
    "*.ts",
    "../common/*.ts"
]
rpt2: excluded:
[
    "*.d.ts",
    "**/*.d.ts"
]
rpt2: Ambient types:
rpt2:     /c/Users/Brian/rollup-ts-mono/a/node_modules/@types/estree/index.d.ts
rpt2: ambient types changed, redoing all semantic diagnostics
rpt2: transpiling '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/code/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/syntacticDiagnostics/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/semanticDiagnostics/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2: dependency '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2:     imported by '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2: resolving '../common/func' imported by '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2:     to '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2: transpiling '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/code/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/syntacticDiagnostics/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/semanticDiagnostics/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
[!] (plugin rpt2) Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {
                         ~

../common/func.ts
Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {
                         ~

    at error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:213:30)
    at throwPluginError (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17117:12)
    at Object.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17911:24)
    at Object.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17290:38)
    at RollupContext.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:17195:30)
    at /c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:24992:19
    at arrayEach (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:535:11)
    at forEach (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:9361:14)
    at printDiagnostics (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:24968:5)
    at Object.transform (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:29071:17)

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
bug workaround

All 4 comments

  • It all worked fine until I started to use fancy syntax in the common/func.ts file

Just to clarify what I mean by this, if I change:

export function func({ a }: { a: string }) {
  console.log(`Hi ${a}`);
}

to:

export function func(a: string) {
  console.log(`Hi ${a}`);
}

it all works as intended.

FWIW, I think I may have worked around this by adding a package.json to common, adding tslib as a dependency there, and adding a preinstall step to each of the sibling directories to make them run npm install in common if it exists (since it won't when run under sam build).

I guess it is the same reason why my wrapper for rollup throws the same error when I changed tslib from a peer dependency to dependency. For side note, I am not using this plugin. πŸ˜… It was the official plugin.

First of all, what a great project! It makes building TypeScript libraries so much simpler!
We use rollup and this plugin in our project https://github.com/TelestionTeam/telestion-client and after the initial setup it worked flawlessly.

After a dependabot upgrade (https://github.com/TelestionTeam/telestion-client/pull/344) for TypeScript v4.2 the plugin stopped working with tslib is not found or some parts are not exported (e. g. __spreadArray).
It is important to mention that our project is a monorepo so the complexity increases further and there may be other parts that can cause this issue.
To compile the packages we need to call rollup in every package directory.

I've dug around a bit in the issues and dependencies and found something interesting:
After the installation, npm deduplicates the tslib package only in an earlier version (for us v1.14.1) and installs the newer version (here v2.1.0) in the node_modules folder for every package that needs it.
You can verify it with the command npm ls tslib.
Ours looks like this:


npm ls tslib output without explicitly installed tslib

[email protected] /path/to/project/telestion-client β”œβ”€β”¬ @storybook/[email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ └─┬ [email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] deduped β”œβ”€β”¬ @types/[email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] β”œβ”€β”¬ @typescript-eslint/[email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] deduped β”œβ”€β”¬ @wuespace/[email protected] -> /path/to/project/telestion-client/packages/telestion-client-cli β”‚ └─┬ [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”€ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”€ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”‚ └── [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ └── [email protected] └─┬ [email protected] └── [email protected]

Also I manually checked that and the installed versions are:

| path | version |
| --- | --- |
| project_path/node_modules/tslib | v1.14.0 |
| project_path/node_modules/rollup-plugin-typescript2/node_modules/tslib | v2.1.0 |

After explicity installing tslib via npm i -D tslib the deduplication for the older version is gone and the "working" version is located directly in the node_modules of the project:


npm ls tslib output with explicitly installed tslib

[email protected] /path/to/project/telestion-client β”œβ”€β”¬ @storybook/[email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ └─┬ [email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] β”œβ”€β”¬ @types/[email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] β”œβ”€β”¬ @typescript-eslint/[email protected] β”‚ └─┬ [email protected] β”‚ └── [email protected] β”œβ”€β”¬ @wuespace/[email protected] -> /path/to/project/telestion-client/packages/telestion-client-cli β”‚ └─┬ [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”€ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”€ [email protected] β”‚ β”‚ └─┬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ β”‚ └── [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ β”œβ”€β”¬ [email protected] β”‚ β”‚ └── [email protected] β”‚ └── [email protected] β”œβ”€β”¬ [email protected] β”‚ └── [email protected] └── [email protected]

And the project transpiles again successfully.

I think, there is a resolution error either in the rollup-plugin or in rollup itself which leads to resolving to the package directly in the projects node_modules and not the installed in the node_modules of the installed package.
Unfortunately I am not familiar with the code base of both projects so it's only a guess.

Any ideas where this can happen?

Just for reference, the configuration files and the logs of our run:


package.json

json { "name": "@wuespace/telestion-client-core", "description": "The core components of the Telestion Client", "license": "MIT", "version": "0.10.0", "homepage": "https://github.com/TelestionTeam/telestion-client#readme", "main": "build/index.js", "module": "build/index.es.js", "types": "build/index.d.ts", "files": [ "build" ], "scripts": { "build": "rollup -c", "test": "echo \"Warning: No test script specified!\"", "prepublishOnly": "npm run build", "clean": "rimraf build types" }, "repository": { "type": "git", "url": "git+https://github.com/TelestionTeam/telestion-client.git", "directory": "packages/telestion-client-core" }, "bugs": { "url": "https://github.com/TelestionTeam/telestion-client/issues" }, "author": { "name": "wuespace", "email": "[email protected]", "url": "https://www.wuespace.de/" }, "dependencies": { "@fliegwerk/logsemts": "^0.4.0-0", "@wuespace/telestion-client-prop-types": "file:../telestion-client-prop-types", "@wuespace/telestion-client-types": "file:../telestion-client-types", "@wuespace/vertx-event-bus": "file:../vertx-event-bus", "prop-types": "^15.7.2", "zustand": "^3.2.0" }, "peerDependencies": { "@types/react": "^17.0.0", "react": "^17.0.1", "react-router-dom": "^5.2.0" }, "publishConfig": { "access": "public" } }


rollup.config.js

```js
import { join } from 'path';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import image from '@rollup/plugin-image';
import commonjs from '@rollup/plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import dts from 'rollup-plugin-dts';
import resolve from '@rollup/plugin-node-resolve';
import typescript from 'rollup-plugin-typescript2';
import license from 'rollup-plugin-license';
import { terser } from 'rollup-plugin-terser';

const packageJson = require('./package.json');
const buildTsConfig = require('./tsconfig.build.json');

const defaultResolvePlugin = resolve({ preferBuiltins: true });
const defaultTypeScriptPlugin = typescript({
tsconfig: 'tsconfig.build.json',
useTsconfigDeclarationDir: true
});
const defaultTerserPlugin = terser({
format: {
comments: 'some'
},
keep_classnames: true,
keep_fnames: true
});
const defaultLicensePlugin = license({
sourcemap: true,
cwd: process.cwd(),
banner: {
commentStyle: 'ignored',
content: {
file: join(__dirname, 'LICENSE'),
encoding: 'utf-8'
}
}
});

const monorepoPackages = [
'@wuespace/mock-server',
'@wuespace/telestion-client-cli',
'@wuespace/telestion-client-common',
'@wuespace/telestion-client-core',
'@wuespace/telestion-client-prop-types',
'@wuespace/telestion-client-template',
'@wuespace/telestion-client-types',
'@wuespace/vertx-event-bus'
];

const config = [
{
input: join(process.cwd(), 'src', 'index.ts',
output: [
{
file: packageJson.main,
format: 'cjs',
sourcemap: true
},
{
file: packageJson.module,
format: 'esm',
sourcemap: true
}
],
plugins: [
peerDepsExternal(),
image(),
defaultResolvePlugin,
commonjs(),
defaultTypeScriptPlugin,
postcss(),
defaultTerserPlugin,
defaultLicensePlugin
],
external: [
...Object.keys(packageJson.dependencies || {}),
...monorepoPackages,
'zustand/shallow'
]
},
{
input: buildTsConfig.compilerOptions.declarationDir,
output: [
{
file: packageJson.types,
format: 'es'
}
],
plugins: [dts(), defaultLicensePlugin]
}
];

export default config;
```


tsconfig.build.json

json5 { "extends": "../../tsconfig.json", "compilerOptions": { /* Basic Options */ "target": "es5", "module": "esnext", "lib": ["es6", "dom", "es2016", "es2017"], "declaration": true, "sourceMap": true, /* Strict Type-Checking Options */ "strict": true, /* Module Resolution Options */ "moduleResolution": "node", "allowSyntheticDefaultImports": true, "esModuleInterop": true, /* Advanced Options */ "skipLibCheck": true, "forceConsistentCasingInFileNames": true /* additional overwrites */ "declarationDir": "types", "declaration": true, // reset paths because build should use node_modules instead "paths": {}, "jsx": "react-jsx" }, "include": ["src", "typings.d.ts"], "exclude": [ "node_modules", "build", "types", "src/**/*.test.ts*", "src/**/*.spec.ts*", "src/**/*.stories.ts*" ] }


build log without explicitly installed tslib

```

@wuespace/[email protected] build path/to/project/telestion-client/packages/telestion-client-core
rollup -c

path/to/project/telestion-client/packages/telestion-client-core/src/index.ts β†’ build/index.js, build/index.es.js...
rpt2: built-in options overrides: {
"noEmitHelpers": false,
"importHelpers": true,
"noResolve": false,
"noEmit": false,
"inlineSourceMap": false,
"outDir": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/placeholder",
"moduleResolution": 2,
"allowNonTsExtensions": true
}
rpt2: parsed tsconfig: {
"options": {
"target": 1,
"module": 99,
"allowJs": true,
"checkJs": true,
"noEmit": false,
"resolveJsonModule": true,
"strict": true,
"moduleResolution": 2,
"baseUrl": "path/to/project/telestion-client/packages",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {},
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"pathsBasePath": "path/to/project/telestion-client/base-configs",
"lib": [
"lib.es2015.d.ts",
"lib.dom.d.ts",
"lib.es2016.d.ts",
"lib.es2017.d.ts"
],
"declaration": true,
"sourceMap": true,
"jsx": 4,
"declarationDir": "path/to/project/telestion-client/packages/telestion-client-core/types",
"configFilePath": "path/to/project/telestion-client/packages/telestion-client-core/tsconfig.build.json",
"noEmitHelpers": false,
"importHelpers": true,
"noResolve": false,
"inlineSourceMap": false,
"outDir": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/placeholder",
"allowNonTsExtensions": true
},
"fileNames": [
"path/to/project/telestion-client/packages/telestion-client-core/src/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts"
],
"typeAcquisition": {
"enable": false,
"include": [],
"exclude": []
},
"raw": {
"extends": "../../base-configs/tsconfig.react.build.json",
"compilerOptions": {
"declarationDir": "types"
},
"include": [
"src",
"typings.d.ts"
],
"exclude": [
"node_modules",
"build",
"types",
"src//.test.ts",
"src/
/.spec.ts",
"src//.stories.ts"
],
"compileOnSave": false
},
"errors": [],
"wildcardDirectories": {
"path/to/project/telestion-client/packages/telestion-client-core/src": 1
},
"compileOnSave": false
}
rpt2: typescript version: 4.2.2
rpt2: tslib version: 2.1.0
rpt2: rollup version: 2.39.0
rpt2: rollup-plugin-typescript2 version: 0.30.0
rpt2: plugin options:
{
"tsconfig": "tsconfig.build.json",
"useTsconfigDeclarationDir": true,
"verbosity": 3,
"check": true,
"clean": false,
"cacheRoot": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2",
"include": [
".ts+(|x)",
"
/.ts+(|x)"
],
"exclude": [
".d.ts",
"/
.d.ts"
],
"abortOnError": true,
"rollupCommonJSResolveHack": false,
"tsconfigOverride": {},
"transformers": [],
"tsconfigDefaults": {},
"objectHashIgnoreUnknownHack": false,
"cwd": "path/to/project/telestion-client/packages/telestion-client-core",
"typescript": "version 4.2.2"
}
rpt2: rollup config:
{
"input": "path/to/project/telestion-client/packages/telestion-client-core/src/index.ts",
"plugins": [
{
"name": "peer-deps-external"
},
{
"name": "image"
},
{
"name": "node-resolve"
},
{
"name": "commonjs"
},
{
"name": "rpt2"
},
{
"name": "postcss"
},
{
"name": "terser"
},
{
"name": "rollup-plugin-license"
},
{
"name": "stdin"
}
],
"output": [
{
"file": "build/index.js",
"format": "cjs",
"plugins": [],
"sourcemap": true
},
{
"file": "build/index.es.js",
"format": "esm",
"plugins": [],
"sourcemap": true
}
]
}
rpt2: tsconfig path: path/to/project/telestion-client/packages/telestion-client-core/tsconfig.build.json
rpt2: included:
[
".ts+(|x)",
"
/.ts+(|x)"
]
rpt2: excluded:
[
".d.ts",
"
/.d.ts"
]
rpt2: Ambient types:
rpt2: path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/anymatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__core/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__generator/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__template/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__traverse/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/braces/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/cli-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/clui/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/debug/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/ejs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/estree/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/fs-extra/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob-base/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/graceful-fs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/hast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/history/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/html-minifier-terser/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/inquirer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/is-function/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-coverage/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-report/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-reports/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/jest/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json-schema/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/lodash/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/markdown-to-jsx/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/mdast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/micromatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node-fetch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/normalize-package-data/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/npmlog/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/overlayscrollbars/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse-json/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prettier/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prop-types/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/q/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/qs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reach__router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-syntax-highlighter/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-test-renderer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reactcss/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/resolve/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/shelljs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/sockjs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/source-list-map/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/stack-utils/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/tapable/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/through/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/uglify-js/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/unist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-env/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-sources/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs-parser/index.d.ts
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './components' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './telestion-client' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './pages' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './managers' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './use-logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: resolving './logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: resolving '../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: resolving '../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './pages' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './group' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './variable' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: resolving './event-bus-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: resolving './preferences-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: resolving './use-event-bus-manager' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: resolving './use-event-bus-manager.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-event-bus' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-notifications' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-preferences.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-notification.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-event-bus.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-auth.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './routes/auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './routes/un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: resolving '../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: resolving '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: resolving '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: resolving '../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: resolving '../use-logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: resolving '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: resolving '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: resolving '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: resolving '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: resolving '../../lib/auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: resolving '../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: resolving './routes' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: resolving './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: resolving './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: resolving './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-broadcast' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-channel-latest' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-request' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-request.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: resolving './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: resolving './use-title' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: resolving './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: resolving './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: resolving './auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: resolving './un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: resolving './fake-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: resolving './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: resolving './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: resolving './is-valid-child' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: resolving './parse-routing' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: resolving '../logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: resolving '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: resolving '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
(!) Error when using sourcemap for reporting an error: Can't resolve original location of error.
src/hooks/stores/use-notifications.ts (1:9)
[!] Error: '__spreadArray' is not exported by ../../node_modules/tslib/tslib.es6.js, imported by src/hooks/stores/use-notifications.ts
https://rollupjs.org/guide/en/#error-name-is-not-exported-by-module
src/hooks/stores/use-notifications.ts (1:9)
1: import { __spreadArray } from "tslib";
^
2: import create from 'zustand';
3: import { getLogger } from '../../lib';
Error: '__spreadArray' is not exported by ../../node_modules/tslib/tslib.es6.js, imported by src/hooks/stores/use-notifications.ts
at error (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:5275:30)
at Module.error (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:9992:16)
at Module.traceVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:10385:29)
at ModuleScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:8843:39)
at FunctionScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at ChildScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at FunctionScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at ChildScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at Identifier$1.bind (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:4013:40)
at CallExpression$1.bind (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2724:23)

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @wuespace/[email protected] build: rollup -c
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @wuespace/[email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! /storage/ludwig/.npm/_logs/2021-02-26T14_59_14_294Z-debug.log
```


build log with explicitly installed tslib

```

@wuespace/[email protected] build path/to/project/telestion-client/packages/telestion-client-core
rollup -c

path/to/project/telestion-client/packages/telestion-client-core/src/index.ts β†’ build/index.js, build/index.es.js...
rpt2: built-in options overrides: {
"noEmitHelpers": false,
"importHelpers": true,
"noResolve": false,
"noEmit": false,
"inlineSourceMap": false,
"outDir": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/placeholder",
"moduleResolution": 2,
"allowNonTsExtensions": true
}
rpt2: parsed tsconfig: {
"options": {
"target": 1,
"module": 99,
"allowJs": true,
"checkJs": true,
"noEmit": false,
"resolveJsonModule": true,
"strict": true,
"moduleResolution": 2,
"baseUrl": "path/to/project/telestion-client/packages",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {},
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"pathsBasePath": "path/to/project/telestion-client/base-configs",
"lib": [
"lib.es2015.d.ts",
"lib.dom.d.ts",
"lib.es2016.d.ts",
"lib.es2017.d.ts"
],
"declaration": true,
"sourceMap": true,
"jsx": 4,
"declarationDir": "path/to/project/telestion-client/packages/telestion-client-core/types",
"configFilePath": "path/to/project/telestion-client/packages/telestion-client-core/tsconfig.build.json",
"noEmitHelpers": false,
"importHelpers": true,
"noResolve": false,
"inlineSourceMap": false,
"outDir": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/placeholder",
"allowNonTsExtensions": true
},
"fileNames": [
"path/to/project/telestion-client/packages/telestion-client-core/src/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts",
"path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts",
"path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts"
],
"typeAcquisition": {
"enable": false,
"include": [],
"exclude": []
},
"raw": {
"extends": "../../base-configs/tsconfig.react.build.json",
"compilerOptions": {
"declarationDir": "types"
},
"include": [
"src",
"typings.d.ts"
],
"exclude": [
"node_modules",
"build",
"types",
"src//.test.ts",
"src/
/.spec.ts",
"src//.stories.ts"
],
"compileOnSave": false
},
"errors": [],
"wildcardDirectories": {
"path/to/project/telestion-client/packages/telestion-client-core/src": 1
},
"compileOnSave": false
}
rpt2: typescript version: 4.2.2
rpt2: tslib version: 2.1.0
rpt2: rollup version: 2.39.0
rpt2: rollup-plugin-typescript2 version: 0.30.0
rpt2: plugin options:
{
"tsconfig": "tsconfig.build.json",
"useTsconfigDeclarationDir": true,
"verbosity": 3,
"check": true,
"clean": false,
"cacheRoot": "path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2",
"include": [
".ts+(|x)",
"
/.ts+(|x)"
],
"exclude": [
".d.ts",
"/
.d.ts"
],
"abortOnError": true,
"rollupCommonJSResolveHack": false,
"tsconfigOverride": {},
"transformers": [],
"tsconfigDefaults": {},
"objectHashIgnoreUnknownHack": false,
"cwd": "path/to/project/telestion-client/packages/telestion-client-core",
"typescript": "version 4.2.2"
}
rpt2: rollup config:
{
"input": "path/to/project/telestion-client/packages/telestion-client-core/src/index.ts",
"plugins": [
{
"name": "peer-deps-external"
},
{
"name": "image"
},
{
"name": "node-resolve"
},
{
"name": "commonjs"
},
{
"name": "rpt2"
},
{
"name": "postcss"
},
{
"name": "terser"
},
{
"name": "rollup-plugin-license"
},
{
"name": "stdin"
}
],
"output": [
{
"file": "build/index.js",
"format": "cjs",
"plugins": [],
"sourcemap": true
},
{
"file": "build/index.es.js",
"format": "esm",
"plugins": [],
"sourcemap": true
}
]
}
rpt2: tsconfig path: path/to/project/telestion-client/packages/telestion-client-core/tsconfig.build.json
rpt2: included:
[
".ts+(|x)",
"
/.ts+(|x)"
]
rpt2: excluded:
[
".d.ts",
"
/.d.ts"
]
rpt2: Ambient types:
rpt2: path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/anymatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__core/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__generator/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__template/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__traverse/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/braces/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/cli-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/clui/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/debug/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/ejs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/estree/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/fs-extra/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob-base/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/graceful-fs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/hast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/history/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/html-minifier-terser/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/inquirer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/is-function/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-coverage/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-report/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-reports/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/jest/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json-schema/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/lodash/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/markdown-to-jsx/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/mdast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/micromatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node-fetch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/normalize-package-data/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/npmlog/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/overlayscrollbars/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse-json/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prettier/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prop-types/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/q/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/qs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reach__router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-syntax-highlighter/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-test-renderer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reactcss/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/resolve/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/shelljs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/sockjs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/source-list-map/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/stack-utils/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/tapable/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/through/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/uglify-js/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/unist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-env/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-sources/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs-parser/index.d.ts
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1e67fe89f17b9c22b562d14e1409cfffb4eeda5'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './components' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: resolving './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/31ef7f0505f6970d9d607cc118296ab3e3144ef3'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/27052ffcb10ae3ec96d06fff949c5ba79c4752bd'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/22a86813ec6396eb9a0f8f758e756676e4729d14'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './telestion-client' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './pages' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: resolving './preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './managers' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: resolving './use-logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: resolving './logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d855b68dbcf551cb609e7d3307f1fd4e95f5ab43'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/95c0679b5caabf89e10841cc31bf6667f25f7c93'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/83046d747218439ea37b79c8c1411651140aec67'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c1c16fb12a726c81072721c75f6283ad729b4856'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/b8e2f9e3f9772225fbdc586e9bfff698b803f9a4'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/9d64351f2a21836090b9b355377af56c8d703632'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/0d49cc08e64cd1620d8a4178bf856d464417923e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: resolving '../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: resolving '../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './group' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: resolving './variable' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './pages' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: resolving './event-bus-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: resolving './preferences-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-event-bus' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-notifications' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-preferences.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-notification.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-event-bus.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: resolving './use-auth.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: resolving './use-event-bus-manager.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: resolving './use-event-bus-manager' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './routes/auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: resolving './routes/un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: resolving '../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: resolving '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: resolving '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: resolving '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: resolving '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: resolving '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: resolving '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: resolving '../use-logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: resolving '../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: resolving '../../lib/auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: resolving '../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: resolving './routes' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: resolving './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: resolving './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: resolving './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-channel-latest' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-broadcast' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-request' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: resolving './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: resolving './use-request.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: resolving './use-title' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: resolving './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: resolving './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: resolving '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: resolving './un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: resolving './auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: resolving './fake-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: resolving './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: resolving './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: resolving './is-valid-child' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: resolving './parse-routing' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: transpiling 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2:  cache hit
rpt2: generated declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: resolving '../logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: resolving '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: dependency 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: resolving '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: generating target 1
rpt2: rolling caches
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx'
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/telestion-client.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/use-logger.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/logger.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/preferences.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/variable.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/pages.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notifications.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notification.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/auth-route.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/un-auth-route.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/core-utils.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group-context.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel-latest.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-broadcast.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-pref-value.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-title.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/prop-types.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/fake-auth.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/is-valid-child.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/parse-routing.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/storybook/title-user.d.ts'
rpt2: generating target 2
rpt2: rolling caches
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/telestion-client.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/use-logger.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/logger.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/preferences.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/variable.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/pages.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notifications.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notification.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/auth-route.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/un-auth-route.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/core-utils.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group-context.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/index.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel-latest.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-broadcast.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-pref-value.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.model.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-title.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/prop-types.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/fake-auth.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/is-valid-child.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/parse-routing.d.ts'
rpt2: emitting declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/storybook/title-user.d.ts'
created build/index.js, build/index.es.js in 3s

path/to/project/telestion-client/packages/telestion-client-core/types/index.d.ts β†’ build/index.d.ts...
created build/index.d.ts in 121ms
```

Installed/used tools:

| tool | version |
| --- | --- |
| node --version | v14.15.4 |
| npm --version | v6.14.11 |
| rollup --version | v2.39.0 |

Was this page helpful?
0 / 5 - 0 ratings