Skip to content

Commit

Permalink
run ember-cli-update
Browse files Browse the repository at this point in the history
  • Loading branch information
amk221 committed Dec 15, 2023
1 parent 722e241 commit c49c352
Show file tree
Hide file tree
Showing 16 changed files with 18,570 additions and 12,986 deletions.
8 changes: 0 additions & 8 deletions .ember-cli
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
{
/**
Ember CLI sends analytics information by default. The data is completely
anonymous, but there are times when you might want to disable this behavior.

Setting `disableAnalytics` to true will prevent any data from being sent.
*/
"disableAnalytics": false,

/**
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
Expand Down
4 changes: 1 addition & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

module.exports = {
extends: '@zestia/eslint-config/ember-addon'
};
module.exports = require('@zestia/eslint-config/ember-addon');
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install Dependencies
run: npm ci
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install Dependencies
run: npm install --no-shrinkwrap
Expand All @@ -57,8 +57,8 @@ jobs:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.4
- ember-lts-4.8
- ember-lts-4.12
- ember-release
- ember-beta
- ember-canary
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install Dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# compiled output
/dist/
/tmp/
/declarations/

# dependencies
/bower_components/
Expand Down
4 changes: 1 addition & 3 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

module.exports = {
extends: '@zestia/stylelint-config'
};
module.exports = require('@zestia/stylelint-config');
12 changes: 1 addition & 11 deletions .template-lintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,5 @@

module.exports = {
plugins: ['@zestia/template-lint-config'],
extends: 'zestia:recommended',
// Temporarily disable linting pretty-ness of hbs in js files
// Issue: https://discord.com/channels/480462759797063690/666416704418611233/1052203658445598722
overrides: [
{
files: ['**/*.js'],
rules: {
prettier: false
}
}
]
extends: 'zestia:recommended'
};
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"eslint.validate": ["glimmer-ts", "glimmer-js"]
}
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Installation

- `git clone <repository-url>`
- `cd my-addon`
- `cd ember-wrap-urls`
- `npm install`

## Linting
Expand All @@ -13,13 +13,13 @@

## 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
- `npm run test` – Runs the test suite on the current Ember version
- `npm run test:ember -- --server` – Runs the test suite in "watch mode"
- `npm run test:ember-compatibility` – Runs the test suite against multiple Ember versions

## Running the dummy application

- `ember serve`
- `npm run start`
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).

For more information on using ember-cli, visit [https://cli.emberjs.com/release/](https://cli.emberjs.com/release/).
Loading

0 comments on commit c49c352

Please sign in to comment.