1. ホーム
  2. bower

[解決済み] BowerとdevDependencies vs 依存関係

2022-04-25 04:29:03

質問

私は'yo angular'を実行し、それが1.0.8をインストールすることに後で気づきました。私はangularコンポーネントをアンインストールしましたが、元のbower.jsonファイルにはangular-mocksとangular-scenarioが「devDependencies」下にありました。

devDependencies がどのように使用されているのか、また、わざわざ手動で修正する必要があるのか、それともそのままにしておくべきか、気になるところです。 bower CLI で何かを開発依存とマークする方法を指定する方法はありますか?

ファイル編集後。

{
    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"
    }
}

解決方法は?

devDependencies は、ユニットテスト、パッケージングスクリプト、ドキュメント生成など、開発関連のスクリプトに使用します。

dependencies は実運用に必要なものであり、開発にも必要なものと想定されます。

含まれるもの devDependenciesdependencies モジュールはインストール時にさらに多くのファイル (バイト) をバンドルし、より多くの (不要な) リソースを消費するだけです。純粋主義者の観点からは、これらの余分なバイトは有害かもしれませんが、それはあなたの観点によります。

この問題を解決するために 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 が得られる(参照 最新ソース ):

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.