Skip to content

Commit 53457e7

Browse files
authored
Update to @embroider/addon-dev v8 (#1022)
1 parent 3ab93e0 commit 53457e7

File tree

5 files changed

+63
-93
lines changed

5 files changed

+63
-93
lines changed

ember-basic-dropdown/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# compiled output
66
/dist
77
/declarations
8-
/vendor
8+
/src/vendor
99

1010
# npm/pnpm/yarn pack output
1111
*.tgz

ember-basic-dropdown/package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"./scss/base.scss": "./scss/base.scss",
2626
"./less/variables.less": "./less/variables.less",
2727
"./scss/variables.scss": "./scss/variables.scss",
28-
"./vendor/*": "./vendor/*"
28+
"./vendor/*": "./dist/vendor/*"
2929
},
3030
"typesVersions": {
3131
"*": {
@@ -43,8 +43,7 @@
4343
"ember-basic-dropdown.less",
4444
"ember-basic-dropdown.scss",
4545
"less",
46-
"scss",
47-
"vendor"
46+
"scss"
4847
],
4948
"scripts": {
5049
"build": "rollup --config",
@@ -63,8 +62,8 @@
6362
},
6463
"dependencies": {
6564
"@embroider/addon-shim": "^1.10.2",
66-
"@embroider/macros": "^1.19.4",
67-
"@embroider/util": "^1.13.4",
65+
"@embroider/macros": "^1.19.5",
66+
"@embroider/util": "^1.13.5",
6867
"decorator-transforms": "^2.3.0",
6968
"ember-element-helper": "^0.8.8",
7069
"ember-modifier": "^4.2.2",
@@ -79,7 +78,7 @@
7978
"@ember/library-tsconfig": "^1.1.3",
8079
"@ember/string": "^4.0.1",
8180
"@ember/test-helpers": "^5.4.1",
82-
"@embroider/addon-dev": "^7.1.1",
81+
"@embroider/addon-dev": "^8.1.2",
8382
"@eslint/js": "^9.39.1",
8483
"@glint/core": "^1.5.2",
8584
"@glint/environment-ember-loose": "^1.5.2",

ember-basic-dropdown/rollup.config.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ export default [
1313
{
1414
input: './_index.scss',
1515
output: {
16-
file: './vendor/ember-basic-dropdown.js',
16+
file: './src/vendor/ember-basic-dropdown.js',
1717
assetFileNames: '[name][extname]',
1818
},
1919
plugins: [
2020
sass({
21-
output: './vendor/ember-basic-dropdown.css',
21+
output: './src/vendor/ember-basic-dropdown.css',
2222
}),
2323
],
2424
},
2525
{
2626
input: './_index.scss',
2727
output: {
28-
file: './vendor/ember-basic-dropdown.js',
28+
file: './src/vendor/ember-basic-dropdown.js',
2929
assetFileNames: '[name][extname]',
3030
},
3131
plugins: [
@@ -60,6 +60,7 @@ export default [
6060
'modifiers/**/*.js',
6161
'test-support/**/*.js',
6262
'utils/**/*.js',
63+
'vendor/**/*.js',
6364
]),
6465

6566
// These are the modules that should get reexported into the traditional

ember-basic-dropdown/src/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import '../vendor/ember-basic-dropdown.css';
1+
import './vendor/ember-basic-dropdown.css';

0 commit comments

Comments
 (0)