Skip to content

Commit

Permalink
chore: convert integration tests to gjs format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Astapov committed Aug 10, 2023
1 parent a3464ad commit dc5d84d
Show file tree
Hide file tree
Showing 8 changed files with 259 additions and 139 deletions.
5 changes: 4 additions & 1 deletion ember-css-transitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@
}
},
"exports": {
".": "./dist/addon-main.cjs",
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./types/*.d.ts",
"default": "./dist/*.js"
Expand Down
1 change: 1 addition & 0 deletions ember-css-transitions/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as cssTransition } from './modifiers/css-transition';
69 changes: 66 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion test-app/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
'use strict';

module.exports = {
plugins: ['prettier-plugin-ember-template-tag'],
overrides: [
{
files: '*.{js,ts}',
files: '*.{js,ts,gjs,gts}',
options: {
singleQuote: true,
},
Expand Down
3 changes: 3 additions & 0 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@glimmer/tracking": "^1.1.2",
"@glint/core": "^1.0.2",
"@glint/environment-ember-loose": "^1.0.2",
"@glint/environment-ember-template-imports": "^1.0.2",
"@glint/template": "^1.0.2",
"@tsconfig/ember": "^3.0.0",
"@types/ember": "^4.0.4",
Expand Down Expand Up @@ -93,6 +94,7 @@
"ember-resolver": "^10.1.1",
"ember-source": "~5.2.0-beta.3",
"ember-source-channel-url": "^3.0.0",
"ember-template-imports": "^3.4.2",
"ember-template-lint": "^5.11.0",
"ember-try": "^2.0.0",
"eslint": "^8.44.0",
Expand All @@ -103,6 +105,7 @@
"eslint-plugin-qunit": "^8.0.0",
"loader.js": "^4.7.0",
"prettier": "^2.8.8",
"prettier-plugin-ember-template-tag": "^0.3.2",
"qunit": "^2.19.4",
"qunit-dom": "^2.0.0",
"rsvp": "^4.8.5",
Expand Down
Loading

0 comments on commit dc5d84d

Please sign in to comment.