Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 5b03575

Browse files
committedApr 16, 2020
Update LICENSE
1 parent adfae59 commit 5b03575

27 files changed

+77
-77
lines changed
 

‎.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All efforts to contribute are highly appreciated, we recommend you talk to a mai
66

77
## Open Development & Community Driven
88

9-
`pwa-starter` is open-source under the [MIT license](../LICENSE.txt). All the work done is available on GitHub.
9+
`pwa-starter` is open-source under the [MIT license](../LICENSE). All the work done is available on GitHub.
1010

1111
The core team and the contributors send pull requests which go through the same validation process.
1212

‎LICENSE.txt ‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) IBM and its affiliates.
3+
Copyright (c) IBM, Corp. and its affiliates.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎apollo.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
module.exports = {

‎index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!--
2-
Copyright (c) IBM and its affiliates.
2+
Copyright (c) IBM, Corp. and its affiliates.
33
4-
This source code is licensed under the MIT license found in the LICENSE.txt
5-
file in the root directory of this source tree.
4+
This source code is licensed under the MIT license found in the
5+
LICENSE file in the root directory of this source tree.
66
-->
77

88
<!DOCTYPE html>

‎rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { createSpaConfig } from '@open-wc/building-rollup';

‎service-worker.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
console.info(

‎src/components/app-shell.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { LitElement, html, css, customElement, query } from 'lit-element';

‎src/components/app-snackbar.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { LitElement, html, css, customElement } from 'lit-element';

‎src/components/my-pagination.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { LitElement, property, html, customElement, css } from 'lit-element';

‎src/config/development.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
export default {

‎src/config/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import config from './development';

‎src/config/production.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
export default {

‎src/config/staging.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
export default {

‎src/graphql-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import ApolloClient, { gql } from 'apollo-boost';

‎src/helpers/connect-apollo-mixin.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
/* eslint-disable @typescript-eslint/no-explicit-any */

‎src/helpers/metadata.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
export const setMetaTag = (

‎src/helpers/render-page-not-found.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html } from 'lit-element';

‎src/pages/page-about.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement } from 'lit-element';

‎src/pages/page-element.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { LitElement, property } from 'lit-element';

‎src/pages/page-home.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement } from 'lit-element';

‎src/pages/page-not-found.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement } from 'lit-element';

‎src/pages/page-user.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement, query } from 'lit-element';

‎src/pages/page-users-pagination.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement, property, css } from 'lit-element';

‎src/pages/page-users.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { html, customElement } from 'lit-element';

‎src/register-service-worker.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import './components/app-snackbar';

‎src/router/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
import { Router } from '@vaadin/router';

‎src/router/routes.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Copyright (c) IBM and its affiliates.
2+
* Copyright (c) IBM, Corp. and its affiliates.
33
*
4-
* This source code is licensed under the MIT license found in the LICENSE.txt
5-
* file in the root directory of this source tree.
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
66
*/
77

88
export default [

0 commit comments

Comments
 (0)
This repository has been archived.