Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEW VIEW for commits, and unique committers by day. #1910

Merged
merged 16 commits into from
Jul 7, 2022
Merged

Conversation

sgoggins
Copy link
Member

@sgoggins sgoggins commented Jul 6, 2022

Description

  • NEW VIEW for commits, and unique committers by day.

```
 ERROR in /augur/frontend/node_modules/vue/types/v3-component-proxy.d.ts
154:22 ',' expected.
    152 |
    153 | // public properties exposed on the proxy, which is used as the render context
  > 154 | // in templates (as `this` in the render option)
        |                      ^
    155 | export type ComponentPublicInstance<
    156 |   P = {}, // props type extracted from props option
    157 |   B = {}, // raw bindings returned from setup()
 error  in /augur/frontend/node_modules/vue/types/v3-component-proxy.d.ts
ERROR in /augur/frontend/node_modules/vue/types/v3-component-proxy.d.ts
190:1 Unterminated template literal.
    188 |   ExtractComputedReturns<C> &
    189 |   M
  > 190 |
        | ^
 ERROR  Build failed with errors.
The command '/bin/sh -c npm run build' returned a non-zero code: 1
Error: Process completed with exit code 1.
```

https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
```
ERROR in /augur/frontend/src/Augur.ts
37:11 Property 'install' does not exist on type 'typeof import("shards-vue")'.
    35 | import AugurStats from '@/AugurStats';
    36 |
  > 37 | ShardsVue.install(Vue);
       |           ^
    38 |
    39 | Vue.component('default-layout', Default);
    40 |
 error  in /augur/frontend/src/Augur.ts
ERROR in /augur/frontend/src/Augur.ts
44:9 No overload matches this call.
  Overload 1 of 2, '(plugin: PluginObject<unknown> | PluginFunction<unknown>, options?: unknown): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<unknown> | PluginFunction<unknown>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<unknown>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: unknown): void'.
  Overload 2 of 2, '(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<any>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.
    42 | Vue.prototype.$eventHub = new Vue();
    43 |
  > 44 | Vue.use(ShardsVue);
       |         ^
    45 | // Vue.use(Vuex)
    46 | Vue.use(VueVega);
    47 | // Vue.use(VueRouter);
 error  in /augur/frontend/src/Augur.ts
 ```
```

ERROR in /augur/frontend/src/Augur.ts
44:9 No overload matches this call.
  Overload 1 of 2, '(plugin: PluginObject<unknown> | PluginFunction<unknown>, options?: unknown): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<unknown> | PluginFunction<unknown>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<unknown>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: unknown): void'.
  Overload 2 of 2, '(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<any>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.
    42 | Vue.prototype.$eventHub = new Vue();
    43 |
  > 44 | Vue.use(ShardsVue);
       |         ^
    45 | // Vue.use(Vuex)
    46 | Vue.use(VueVega);
    47 | // Vue.use(VueRouter);
 error  in /augur/frontend/src/Augur.ts
ERROR in /augur/frontend/src/Augur.ts
46:9 No overload matches this call.
  Overload 1 of 2, '(plugin: PluginObject<unknown> | PluginFunction<unknown>, options?: unknown): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("vue-vega")' is not assignable to parameter of type 'PluginObject<unknown> | PluginFunction<unknown>'.
      Type 'typeof import("vue-vega")' is not assignable to type 'PluginFunction<unknown>'.
        Type 'typeof import("vue-vega")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: unknown): void'.
  Overload 2 of 2, '(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("vue-vega")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
      Type 'typeof import("vue-vega")' is not assignable to type 'PluginFunction<any>'.
        Type 'typeof import("vue-vega")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.
    44 | Vue.use(ShardsVue);
    45 | // Vue.use(Vuex)
  > 46 | Vue.use(VueVega);
       |         ^
    47 | // Vue.use(VueRouter);
    48 |
    49 | export default function Augur() {
 ERROR  Build failed with errors.
The command '/bin/sh -c npm run build' returned a non-zero code: 1
```
```

ERROR in /augur/frontend/src/Augur.ts
44:9 No overload matches this call.
  Overload 1 of 2, '(plugin: PluginObject<unknown> | PluginFunction<unknown>, options?: unknown): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<unknown> | PluginFunction<unknown>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<unknown>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: unknown): void'.
  Overload 2 of 2, '(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("shards-vue")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
      Type 'typeof import("shards-vue")' is not assignable to type 'PluginFunction<any>'.
        Type 'typeof import("shards-vue")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.
    42 | Vue.prototype.$eventHub = new Vue();
    43 |
  > 44 | Vue.use(ShardsVue);
       |         ^
    45 | // Vue.use(Vuex)
    46 | Vue.use(VueVega);
    47 | // Vue.use(VueRouter);
 error  in /augur/frontend/src/Augur.ts
ERROR in /augur/frontend/src/Augur.ts
46:9 No overload matches this call.
  Overload 1 of 2, '(plugin: PluginObject<unknown> | PluginFunction<unknown>, options?: unknown): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("vue-vega")' is not assignable to parameter of type 'PluginObject<unknown> | PluginFunction<unknown>'.
      Type 'typeof import("vue-vega")' is not assignable to type 'PluginFunction<unknown>'.
        Type 'typeof import("vue-vega")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: unknown): void'.
  Overload 2 of 2, '(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): VueConstructor<Vue>', gave the following error.
    Argument of type 'typeof import("vue-vega")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
      Type 'typeof import("vue-vega")' is not assignable to type 'PluginFunction<any>'.
        Type 'typeof import("vue-vega")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.
    44 | Vue.use(ShardsVue);
    45 | // Vue.use(Vuex)
  > 46 | Vue.use(VueVega);
       |         ^
    47 | // Vue.use(VueRouter);
    48 |
    49 | export default function Augur() {
 ERROR  Build failed with errors.
The command '/bin/sh -c npm run build' returned a non-zero code: 1
```
```

ERROR in /augur/frontend/src/Augur.ts
41:10 Module '"../node_modules/vue/types"' has no exported member 'createApp'. Did you mean to use 'import createApp from "../node_modules/vue/types"' instead?
    39 |
    40 | //plugin setup from https://vuejs.org/guide/reusability/plugins.html#introduction
  > 41 | import { createApp } from 'vue'
       |          ^
    42 |
    43 | const app = createApp({})
    44 |
 ERROR  Build failed with errors.
The command '/bin/sh -c npm run build' returned a non-zero code: 1
```
```
 error  in /augur/frontend/src/Augur.ts
ERROR in /augur/frontend/src/Augur.ts
47:13 Value of type 'typeof VueTypes' is not callable. Did you mean to include 'new'?
    45 |
    46 |
  > 47 | const app = createApp({})
       |             ^
    48 |
    49 | app.use(ShardsVue, {
    50 |   /* optional options */
 ERROR  Build failed with errors.
The command '/bin/sh -c npm run build' returned a non-zero code: 1
Error: Process completed with exit code 1.
```
@sgoggins sgoggins merged commit c61d2a4 into main Jul 7, 2022
@sgoggins
Copy link
Member Author

sgoggins commented Jul 7, 2022

Resolves issue #1885

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant