web-dev-qa-db-ja.com

BowerおよびdevDependenciesと依存関係

「yo angular」を実行し、1.0.8をインストールしたことを実感した後、angularコンポーネントをアンインストールしましたが、元のbower.jsonファイルには、「devDependencies」の下に、 -devDependenciesの代わりに、依存関係の下にすべての1.2.0-rc.2コンポーネント、angular-mocksおよびangular-scenarioを追加します。

DevDependenciesがどのように使用されているのか、それを手動で修正するのか、そのままにしておくのかについて興味があります。 bower CLIで、何かをdev依存関係としてマークする方法を指定する方法はありますか?

ファイルを編集した後:

{
    name: "Angular",
    version: "0.0.0",
    dependencies: {
        json3: "~3.2.4",
        jquery: "~1.9.1",
        bootstrap-sass: "~2.3.1",
        es5-shim: "~2.0.8",
        angular-mocks: "1.2.0-rc.2",
        angular-sanitize: "1.2.0-rc.2",
        angular-resource: "1.2.0-rc.2",
        angular-cookies: "1.2.0-rc.2",
        angular: "1.2.0-rc.2",
        angular-scenario: "1.2.0-rc.2"
    },
    devDependencies: { }
}

編集前:

{
    "name": "Angular",
    "version": "0.0.0",
    "dependencies": {
        "angular": "~1.0.7",
        "json3": "~3.2.4",
        "jquery": "~1.9.1",
        "bootstrap-sass": "~2.3.1",
        "es5-shim": "~2.0.8",
        "angular-resource": "~1.0.7",
        "angular-cookies": "~1.0.7",
        "angular-sanitize": "~1.0.7"
    },
    "devDependencies": {
        "angular-mocks": "~1.0.7",
        "angular-scenario": "~1.0.7"
    }
}
156
Gary

devDependenciesは、開発関連のスクリプト用です。単体テスト、パッケージ化スクリプト、ドキュメント生成など。

dependenciesは実稼働での使用に必要であり、devにも必要であると想定されています。

devDependencies内にdependenciesを含めることは、あなたが持っているように、有害ではありません。モジュールはインストール中により多くのファイル(バイト)をバンドルするだけで、より多くの(不要な)リソースを消費します。純粋なPOVから見ると、これらの余分なバイトは有害である可能性がありますが、それはあなたの見方によって異なります。

bower help installを見て、devDependenciesの下にリストされているモジュールは、-pまたは--productionを介してモジュールのインストール中に省略できます。例:

bower install angular-latest --production

これは、開発プラットフォーム以外のインストールを実行する推奨方法です。

それどころか、dependenciesの下にリストされているモジュールを省略する方法はありません。


[email protected]bower最新ソース を参照)の場合、bower helpは以下を生成します:

Usage:

    bower <command> [<args>] [<options>]

Commands:

    cache                   Manage bower cache
    help                    Display help information about Bower
    home                    Opens a package homepage into your favorite browser
    info                    Info of a particular package
    init                    Interactively create a bower.json file
    install                 Install a package locally
    link                    Symlink a package folder
    list                    List local packages
    lookup                  Look up a package URL by name
    Prune                   Removes local extraneous packages
    register                Register a package
    search                  Search for a package by name
    update                  Update a local package
    uninstall               Remove a local package

Options:

    -f, --force             Makes various commands more forceful
    -j, --json              Output consumable JSON
    -l, --log-level         What level of logs to report
    -o, --offline           Do not hit the network
    -q, --quiet             Only output important information
    -s, --silent            Do not output anything, besides errors
    -V, --verbose           Makes output more verbose
    --allow-root            Allows running commands as root

See 'bower help <command>' for more information on a specific command.

さらに、bower help installが生成されます( latest source を参照):

Usage:

    bower install [<options>]
    bower install <endpoint> [<endpoint> ..] [<options>]

Options:

    -F, --force-latest      Force latest version on conflict
    -h, --help              Show this help message
    -p, --production        Do not install project devDependencies
    -S, --save              Save installed packages into the project's bower.json dependencies
    -D, --save-dev          Save installed packages into the project's bower.json devDependencies

    Additionally all global options listed in 'bower help' are available

Description:

    Installs the project dependencies or a specific set of endpoints.
    Endpoints can have multiple forms:
    - <source>
    - <source>#<target>
    - <name>=<source>#<target>

    Where:
    - <source> is a package URL, physical location or registry name
    - <target> is a valid range, commit, branch, etc.
    - <name> is the name it should have locally.
276
zamnuts