Skip to content

Commit

Permalink
setup v2
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Dec 5, 2023
1 parent f40fdb4 commit 3e92cf7
Show file tree
Hide file tree
Showing 270 changed files with 890 additions and 29,118 deletions.
2 changes: 0 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

root = true


[*]
end_of_line = lf
charset = utf-8
Expand All @@ -13,7 +12,6 @@ insert_final_newline = true
indent_style = space
indent_size = 2


[*.hbs]
insert_final_newline = false

Expand Down
135 changes: 0 additions & 135 deletions .eslintrc.js

This file was deleted.

2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

26 changes: 22 additions & 4 deletions .gitignore
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

15 changes: 0 additions & 15 deletions .npmignore

This file was deleted.

10 changes: 10 additions & 0 deletions .prettierignore
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
6 changes: 6 additions & 0 deletions .prettierrc.cjs
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,
};
11 changes: 0 additions & 11 deletions CHANGELOG.md

This file was deleted.

32 changes: 18 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Loading

0 comments on commit 3e92cf7

Please sign in to comment.