Как обработать уведомление об авторских правах в комплекте javascript? - PullRequest
0 голосов
/ 17 октября 2018

Я писал пару небольших демонстраций, чтобы объяснить декораторам (в машинописном тексте) коллегам, когда заметил, что в моем пакете есть уведомление от Microsoft, что делает мой файл бесплатным для всех (и сделан MS).

Как это должно быть эффективно обработано (если я создаю что-то несвободное)?

Я использовал Typescript 3.1 для компиляции и объединения для объединения.

code:

import { isNotUndefined, isNotNullOrUndefined } from "goodcore/Test";

function deprecated<S>(instead?: string, message?: string) {
    // Logic removed for brevity...
}

class Car {
    @deprecated()
    public turnIgnitionKey() {
        this.start();
    }
    public pressStartButton() {
        this.start();
    }
    private start() {
        console.log("Running!");
    }
}

let car = new Car();
car.turnIgnitionKey();
car.pressStartButton();

и начало связки (где последняя функция - моя, а предыдущая - MS):

'use strict';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0

THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.

See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */

function __decorate(decorators, target, key, desc) {
    var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
    if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
    else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
    return c > 3 && r && Object.defineProperty(target, key, r), r;
}

function __metadata(metadataKey, metadataValue) {
    if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
}

function isNullOrUndefined(arg) {
    return arg === undefined || arg === null;
}

1 Ответ

0 голосов
/ 10 мая 2019

@ JGoodgive,

Вы можете добавить свою собственную пользовательскую лицензию выше каждого файла JavaScript, который вы создаете, поэтому при его объединении ваш файл лицензии должен отображаться над кодом JS.

/*! *****************************************************************************
Copyright (c) <Author>. All rights reserved.
<Custom license text here>
***************************************************************************** */

// Your JS code below your custom license 
...