packages/cli: move create-plugin/codeowners to lib

This commit is contained in:
Patrik Oldsberg
2020-04-18 15:01:49 +02:00
parent a923254947
commit c6c17cdf3e
6 changed files with 20 additions and 3 deletions
@@ -25,7 +25,7 @@ import {
parseOwnerIds,
addCodeownersEntry,
getCodeownersFilePath,
} from './lib/codeowners';
} from 'lib/codeowners';
import { paths } from 'lib/paths';
import { version } from 'lib/version';
import { Task, templatingTask } from 'lib/tasks';
@@ -23,7 +23,7 @@ import {
capitalize,
createTemporaryPluginFolder,
} from '../create-plugin/createPlugin';
import { addCodeownersEntry } from '../create-plugin/lib/codeowners';
import { addCodeownersEntry } from 'lib/codeowners';
import {
removeReferencesFromAppPackage,
removeReferencesFromPluginsFile,
@@ -17,7 +17,7 @@ import fse from 'fs-extra';
import path from 'path';
import chalk from 'chalk';
import inquirer, { Answers, Question } from 'inquirer';
import { getCodeownersFilePath } from '../create-plugin/lib/codeowners';
import { getCodeownersFilePath } from 'lib/codeowners';
import { paths } from 'lib/paths';
import { Task } from 'lib/tasks';
// import os from 'os';
+17
View File
@@ -0,0 +1,17 @@
/*
* Copyright 2020 Spotify AB
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './codeowners';