バージョン
ノード -- バージョン v8.11.3
npm --バージョン 6.4.1
ng --version
_ _ ____ _ ___
/ \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _|
/ △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | |
/ ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | |
/_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___|
|___/
Angular CLI: 6.1.1
Node: 8.11.3
OS: darwin x64
Angular: 6.1.10
... common, core, router
Package Version
-------------------------------------------------------------
@angular-devkit/architect 0.7.5
@angular-devkit/build-angular 0.7.5
@angular-devkit/build-optimizer 0.7.5
@angular-devkit/build-webpack 0.7.5
@angular-devkit/core 0.6.8
@angular-devkit/schematics 0.7.1
@angular/animations 6.1.0
@angular/cdk 6.4.7
@angular/cli 6.1.1
@angular/compiler 6.1.0
@angular/compiler-cli 6.1.0
@angular/forms 6.1.0
@angular/http 6.1.0
@angular/language-service 6.1.0
@angular/platform-browser 6.1.0
@angular/platform-browser-dynamic 6.1.0
@ngtools/webpack 6.1.5
@schematics/angular 0.7.1
@schematics/update 0.7.1
rxjs 6.3.3
typescript 2.9.2
webpack 4.9.2
再現手順
私は非公開のプロジェクトを持っているので、レポを共有できません。あらかじめご了承ください。を使用して更新できるように、回路図のサポートを追加した角度のあるプロジェクトがありng update
ます。したがって、migration.json
ファイルを含む回路図フォルダーがあります。
{
"$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"migration01": {
"version": "1.0.0-nav-menu-with-migration.3",
"description": "Update",
"factory": "./src/ng-update/index"
}
}
}
tsconfig.schematics.json
:
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"lib": [
"dom",
"es2017",
"esnext.asynciterable"
]
},
"exclude": [
"**/files/*.ts",
"**/*.spec.ts"
]
}
tsconfig.schematics.spec.json
:
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"moduleResolution": "node",
"types": [
"jasmine",
"node"
],
"lib": [
"es2017",
"dom"
],
"declaration": false
},
"include": [
"./spec/**/*.spec.ts"
]
}
jasmine.json
:
{
"spec_dir": "projects/nav-menu/schematics/spec",
"spec_files": [
"**/*.spec.js"
],
"helpers": [
"projects/nav-menu/schematics/spec/helpers/**/*.js"
],
"stopSpecOnExpectationFailure": false,
"random": false
}
次のng-update
フォルダがありますindex.ts
:
import { Rule, SchematicContext, SchematicsException, Tree } from "@angular-devkit/schematics";
export default function(): Rule {
return (tree: Tree, context: SchematicContext) => {
context.logger.warn("it's happening!");
const pkgPath = "/package.json";
const buffer = tree.read(pkgPath);
if (buffer == null) {
throw new SchematicsException("Could not read package.json");
}
const content = buffer.toString();
const pkg = JSON.parse(content);
if (pkg === null || typeof pkg !== "object" || Array.isArray(pkg)) {
throw new SchematicsException("Error reading package.json");
}
if (!pkg.dependencies) {
pkg.dependencies = {};
}
if (pkg.dependencies["@solarwinds/nav-menu-with-migration"]) {
pkg.dependencies["ngx-perfect-scrollbar"] = `^7.0.0`;
pkg.dependencies["ngx-device-detector"] = null;
tree.overwrite(pkgPath, JSON.stringify(pkg, null, 2));
}
return tree;
};
}
package.json
私のナビゲーションメニュープロジェクトの場合:
{
"name": "@solarwinds/nav-menu-with-migration",
"version": "0.0.1",
"peerDependencies": {
"css-element-queries": "~0.4.0",
"ngx-perfect-scrollbar": "^7.0.0",
"web-animations-js": "^2.3.1",
"@angular/cdk": "^6.0.2",
"@angular/common": "^6.0.7",
"@angular/core": "^6.0.7",
"@angular/router": "^6.0.7",
"@solarwinds/nova-xui": "6.3.0-alpha.10.1322",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
},
"schematics": "./schematics/collection.json",
"ng-update": {
"migrations": "./schematics/migration.json"
}
}
パッケージを公開したら、nav-menu
このパッケージを使用する他のアプリケーションのいずれかで更新しようとします。さまざまなコマンドを試してみましたが、どれも でmigration.json
回路図を実行していないようですng update
。だから私は試しました:
ng update @solarwinds/nav-menu-with-migration --to=1.0.0-nav-menu-with-migration.3 --migrate-only
次のエラーが表示されます。Incompatible peer dependencies found. See above
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "@angular/cdk" (requires "6.3.3", would install "6.4.7").
Package "@angular/http" has an incompatible peer dependency to "@angular/core" (requires "6.1.0" (extended), wouldinstall "6.1.10").
Package "@angular/platform-browser-dynamic" has an incompatible peer dependency to "@angular/common" (requires "6.1.0" (extended), would install "6.1.10").
Package "@angular/router" has an incompatible peer dependency to "@angular/platform-browser" (requires "6.1.10", would install "6.1.0")
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "@angular/router" (requires "6.1.4" (extended), would install "6.1.10").
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "rxjs" (requires "6.2.2", would install "6.3.3").
Incompatible peer dependencies found. See above.
その--force
ため、フラグを使用してみpackage.json
ましたが、ファイルは更新されましたが、migration.json
回路図の実行が表示されません。
g update @solarwinds/nav-menu-with-migration --to=1.0.0-nav-menu-with-migration.3 --force --migrate-only
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "rxjs" (requires "6.2.2", would install "6.3.3").
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "@angular/cdk" (requires "6.3.3", would install "6.4.7").
Package "@angular/platform-browser-dynamic" has an incompatible peer dependency to "@angular/core" (requires "6.1.0" (extended), would install "6.1.10").
Package "@angular/router" has an incompatible peer dependency to "@angular/platform-browser" (requires "6.1.10", would install "6.1.0")
Package "@solarwinds/nova-xui" has an incompatible peer dependency to "@angular/router" (requires "6.1.4" (extended), would install "6.1.10").
Package "@angular/platform-browser-dynamic" has an incompatible peer dependency to "@angular/common" (requires "6.1.0" (extended), would install "6.1.10").
Updating package.json with dependency rxjs @ "6.3.3" (was "6.2.2")...
Updating package.json with dependency @angular/cdk @ "6.4.7" (was "6.4.3")...
Updating package.json with dependency @angular/core @ "6.1.10" (was "6.1.0")...
Updating package.json with dependency @angular/router @ "6.1.10" (was "6.1.0")...
Updating package.json with dependency @angular/common @ "6.1.10" (was "6.1.0")...
ng update
コマンドが実行されない理由がわかりません。migration.json
回路図をテストしたかったので、実行時にコードが機能し、期待どおりに機能するかどうかを確認できるようcollection.json
にポイントしました(注:これはテスト目的のみであり、移行を実行するために使用するつもりはありません)。出力は次のとおりです。 ng-update/index
ng add @solarwinds/nav-menu-with-migration@1.0.0-nav-menu-with-migration.3
ng-update
ng add
TREHMAN-MB:web-application-seed tanzeel.rehman$ ng add @solarwinds/nav-menu-with-migration@1.0.0-nav-menu-with-migration.3Installing packages for tooling via npm.
npm WARN @solarwinds/nav-menu@2.2.0 requires a peer of @solarwinds/nova-xui@6.3.0-alpha.10.1322 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/animations@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/cdk@6.3.3 but none is installed. You must install peerdependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/common@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/compiler@6.1.4 but none is installed. You must installpeer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/core@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/forms@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/http@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/platform-browser@6.1.4 but none is installed. You mustinstall peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/platform-browser-dynamic@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nova-xui@6.3.0-alpha.12.1825 requires a peer of @angular/router@6.1.4 but none is installed. You must install peer dependencies yourself.
npm WARN tsickle@0.30.0 requires a peer of typescript@>=2.4.2 <2.9 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nav-menu-with-migration@1.0.0-nav-menu-with-migration.3 requires a peer of ngx-perfect-scrollbar@^7.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN @solarwinds/nav-menu-with-migration@1.0.0-nav-menu-with-migration.3 requires a peer of @solarwinds/nova-xui@6.3.0-alpha.10.1322 but none is installed. You must install peer dependencies yourself.
+ @solarwinds/nav-menu-with-migration@1.0.0-nav-menu-with-migration.3
updated 1 package and audited 40530 packages in 16.964s
found 10 vulnerabilities (3 low, 5 moderate, 2 high)
run `npm audit fix` to fix them, or `npm audit` for details
Installed packages for tooling via npm.
it's happening!
UPDATE package.json (4250 bytes)
誰かがここで私を助けてくれますかng update
。よろしくお願いします!