-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
270 changed files
with
890 additions
and
29,118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
node_modules | ||
dist | ||
.idea | ||
tmp | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# misc | ||
.env* | ||
.pnp* | ||
.pnpm-debug.log | ||
.sass-cache | ||
.eslintcache | ||
coverage/ | ||
npm-debug.log* | ||
yarn-error.log | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/package.json.ember-try | ||
/package-lock.json.ember-try | ||
/yarn.lock.ember-try | ||
/pnpm-lock.ember-try.yaml | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Prettier is also run from each package, so the ignores here | ||
# protect against files that may not be within a package | ||
|
||
# misc | ||
!.* | ||
.lint-todo/ | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/pnpm-lock.ember-try.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
plugins: ['prettier-plugin-ember-template-tag'], | ||
singleQuote: true, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,26 +2,30 @@ | |
|
||
## Installation | ||
|
||
* `git clone [email protected]:patricklx/carbon-components-ember.git` | ||
* `cd carbon-components-ember` | ||
* `nmp install` | ||
- `git clone <repository-url>` | ||
- `cd carbon-components-ember2` | ||
- `npm install` | ||
|
||
## Linting | ||
|
||
* `npm run lint:hbs` | ||
* `npm run lint:js` | ||
* `npm run glint` | ||
* `npm run lint:js -- --fix` | ||
- `npm run lint` | ||
- `npm run lint:fix` | ||
|
||
## Building the addon | ||
|
||
- `cd carbon-components-ember2` | ||
- `npm build` | ||
|
||
## Running tests | ||
|
||
* `ember test` – Runs the test suite on the current Ember version | ||
* `ember test --server` – Runs the test suite in "watch mode" | ||
* `ember try:each` – Runs the test suite against multiple Ember versions | ||
- `cd test-app` | ||
- `npm run test` – Runs the test suite on the current Ember version | ||
- `npm run test:watch` – Runs the test suite in "watch mode" | ||
|
||
## Running the dummy application | ||
## Running the test application | ||
|
||
* `ember serve` | ||
* Visit the dummy application at [http://localhost:4200](http://localhost:4200). | ||
- `cd test-app` | ||
- `npm run start` | ||
- Visit the test application at [http://localhost:4200](http://localhost:4200). | ||
|
||
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/). | ||
For more information on using ember-cli, visit [https://cli.emberjs.com/release/](https://cli.emberjs.com/release/). |
Oops, something went wrong.