Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
13 changes: 1 addition & 12 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,14 @@
# unconventional js
/blueprints/*/files/
/vendor/

# compiled output
/declarations/
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/

# misc
/coverage/
!.*
.*/
.eslintcache

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/npm-shrinkwrap.json.ember-try
/package.json.ember-try
/package-lock.json.ember-try
/yarn.lock.ember-try
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
try-scenario:
- ember-lts-3.28
- ember-lts-4.12
# - ember-lts-5.12
- ember-lts-5.12
# - ember-release
# - ember-beta
# - ember-canary
Expand Down
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist/
/tmp/
/declarations/

# dependencies
/bower_components/
/node_modules/

# misc
/.env*
/.pnp*
/.sass-cache
/.eslintcache
/connect.lock
/coverage/
/libpeerconnection.log
/npm-debug.log*
/testem.log
/yarn-error.log

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/npm-shrinkwrap.json.ember-try
/package.json.ember-try
/package-lock.json.ember-try
Expand Down
8 changes: 2 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
/dist/
/tmp/

# dependencies
/bower_components/

# misc
/.bowerrc
/.editorconfig
/.ember-cli
/.env*
Expand All @@ -23,18 +19,18 @@
/.template-lintrc.js
/.travis.yml
/.watchmanconfig
/bower.json
/CONTRIBUTING.md
/ember-cli-build.js
/testem.js
/tests/
/tsconfig.declarations.json
/tsconfig.json
/yarn-error.log
/yarn.lock
.gitkeep

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/npm-shrinkwrap.json.ember-try
/package.json.ember-try
/package-lock.json.ember-try
Expand Down
14 changes: 1 addition & 13 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,13 @@
# unconventional js
/blueprints/*/files/
/vendor/

# compiled output
/dist/
/tmp/

# dependencies
/bower_components/
/node_modules/

# misc
/coverage/
!.*
.eslintcache
.lint-todo/
.*/

# ember-try
/.node_modules.ember-try/
/bower.json.ember-try
/npm-shrinkwrap.json.ember-try
/package.json.ember-try
/package-lock.json.ember-try
/yarn.lock.ember-try
2 changes: 1 addition & 1 deletion .watchmanconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"ignore_dirs": ["tmp", "dist"]
"ignore_dirs": ["dist"]
}
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- `pnpm test` – Runs the test suite on the current Ember version
- `pnpm test:ember --server` – Runs the test suite in "watch mode"
- `pnpm test:ember-compatibility` – Runs the test suite against multiple Ember versions

## Running the dummy application

* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).
- `pnpm 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/).
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Then assign the changeset based on that to your form:
* [Simon Ihmig](https://github.com/simonihmig) @ [kaliber5](http://www.kaliber5.de)
* [Jeldrik Hanschke](https://github.com/jelhan)


## Contributing

See the [Contributing](CONTRIBUTING.md) guide for details.
Expand Down
2 changes: 1 addition & 1 deletion addon/components/bs-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class BsFormWithChangesetValidationsSupport extends BsForm {

assert(
'Model must be a Changeset instance',
m && typeof m.validate === 'function'
m && typeof m.validate === 'function',
);

await m.validate();
Expand Down
46 changes: 24 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,31 @@
},
"scripts": {
"build": "ember build --environment=production",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember serve",
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
"test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\"",
"test:ember": "ember test",
"test:ember-compatibility": "ember try:each"
},
"dependencies": {
"ember-cli-babel": "^7.26.11",
"ember-cli-htmlbars": "^6.2.0"
"@babel/core": "^7.25.2",
"ember-cli-babel": "^8.2.0",
"ember-cli-htmlbars": "^6.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.4",
"@babel/plugin-proposal-decorators": "7.28.0",
"@ember/optional-features": "2.2.0",
"@ember/string": "3.1.1",
"@ember/test-helpers": "2.9.6",
"@embroider/test-setup": "1.8.3",
"@ember/string": "^4.0.1",
"@ember/test-helpers": "3.3.1",
"@embroider/test-setup": "4.0.0",
"@glimmer/component": "1.1.2",
"@glimmer/tracking": "1.1.2",
"bootstrap": "5.3.8",
Expand All @@ -52,35 +53,36 @@
"ember-bootstrap": "6.5.0",
"ember-changeset": "4.2.0",
"ember-changeset-validations": "5.0.0",
"ember-cli": "4.12.3",
"ember-cli": "5.12.0",
"ember-cli-clean-css": "^3.0.0",
"ember-cli-dependency-checker": "3.3.3",
"ember-cli-inject-live-reload": "2.1.0",
"ember-cli-sri": "2.1.1",
"ember-cli-terser": "4.0.2",
"ember-focus-trap": "1.1.1",
"ember-load-initializers": "3.0.1",
"ember-page-title": "9.0.3",
"ember-qunit": "6.2.0",
"ember-qunit": "8.1.0",
"ember-resolver": "13.1.1",
"ember-source": "4.12.4",
"ember-source": "5.12.0",
"ember-source-channel-url": "3.0.0",
"ember-template-lint": "6.1.0",
"ember-try": "2.0.0",
"ember-try": "3.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-ember": "11.12.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-prettier": "4.2.5",
"eslint-plugin-qunit": "7.3.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ember": "12.2.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-qunit": "8.1.2",
"loader.js": "4.7.0",
"prettier": "2.8.8",
"prettier": "3.3.3",
"qunit": "2.24.1",
"qunit-dom": "2.0.0",
"qunit-dom": "3.2.1",
"release-it": "14.14.3",
"release-it-lerna-changelog": "3.1.0",
"stylelint": "15.11.0",
"stylelint-config-standard": "32.0.0",
"stylelint-prettier": "3.0.0",
"stylelint-config-standard": "34.0.0",
"stylelint-prettier": "4.1.0",
"webpack": "5.101.3"
},
"peerDependencies": {
Expand Down
Loading