ember-cli-active-link-wrapper
Simple ember-cli link wrapper to propagate active class to parent element
File Explorer
- active-link.js
- active-link.js
- active-link.js
- active-link.js
- ember-try.js
- environment.js
- active-link-test.js
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- other.js
- app.css
- .gitkeep
- application.hbs
- app.js
- index.html
- resolver.js
- router.js
- environment.js
- optional-features.json
- targets.js
- robots.txt
- .gitkeep
- index.html
- test-helper.js
- .gitkeep
- .editorconfig
- .ember-cli
- .eslintignore
- .eslintrc.js
- .gitignore
- .npmignore
- .template-lintrc.js
- .travis.yml
- .watchmanconfig
- ember-cli-build.js
- index.js
- LICENSE.md
- package.json
- README.md
- testem.js
- yarn.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bower
View Details ▼
bower
A package manager optimized for front-end web development.
A package can be a GitHub user/repo shorthand, a Git endpoint, a URL or a registered package.
bower install
Install a project's dependencies, listed in its `bower.json`:
bower install {{package1 package2 ...}}
Install one or more packages to the bower_components directory:
bower uninstall {{package1 package2 ...}}
Uninstall packages locally from the bower_components directory:
ember
View Details ▼
ember
Ember CLI: create and manage Ember.js applications.
ember new {{my_new_app}}
Create a new Ember application:
ember addon {{my_new_addon}}
Create a new Ember addon:
ember build
Build the project:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
