Skip to content

Commit

Permalink
Switched to correct license: MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
wictorwilen committed Mar 5, 2018
1 parent 4ed49b3 commit 5af1be2
Show file tree
Hide file tree
Showing 18 changed files with 84 additions and 3 deletions.
23 changes: 22 additions & 1 deletion LICENSE.md
@@ -1 +1,22 @@
This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
MIT License

Copyright (c) Wictor Wilén. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
2 changes: 1 addition & 1 deletion generators/app/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,7 +36,7 @@
"url": "http://www.wictorwilen.se"
}
],
"license": "CC-BY-4.0",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.104",
"@types/yeoman-generator": "^2.0.1",
Expand Down
4 changes: 4 additions & 0 deletions src/app/GeneratorTeamsApp.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/app/GeneratorTeamsAppOptions.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

/**
* Configuration options for the generator
*/
Expand Down
4 changes: 4 additions & 0 deletions src/app/Yotilities.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';

let path = require('path');
Expand Down
4 changes: 4 additions & 0 deletions src/app/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import {GeneratorTeamsApp} from './GeneratorTeamsApp';

module.exports = GeneratorTeamsApp
4 changes: 4 additions & 0 deletions src/bot/BotGenerator.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/bot/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import {BotGenerator} from './BotGenerator';

module.exports = BotGenerator
4 changes: 4 additions & 0 deletions src/connector/ConnectorGenerator.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/connector/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import { ConnectorGenerator } from './ConnectorGenerator';

module.exports = ConnectorGenerator
4 changes: 4 additions & 0 deletions src/custombot/CustomBotGenerator.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/custombot/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import {CustomBotGenerator} from './CustomBotGenerator';

module.exports = CustomBotGenerator
4 changes: 4 additions & 0 deletions src/messageExtension/MessageExtensionGenerator.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/messageExtension/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import { MessageExtensionGenerator } from './MessageExtensionGenerator';

module.exports = MessageExtensionGenerator
4 changes: 4 additions & 0 deletions src/tab/TabGenerator.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as Generator from 'yeoman-generator';
import * as lodash from 'lodash';
import * as chalk from 'chalk';
Expand Down
4 changes: 4 additions & 0 deletions src/tab/index.ts
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import {TabGenerator} from './TabGenerator';

module.exports = TabGenerator
4 changes: 4 additions & 0 deletions webpack.config.js
@@ -1,3 +1,7 @@
// Copyright (c) Wictor Wilén. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

var webpack = require('webpack');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var CleanWebpackPlugin = require('clean-webpack-plugin');
Expand Down

0 comments on commit 5af1be2

Please sign in to comment.