Skip to content

Commit

Permalink
Upgrade Dependencies (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
gossi authored May 29, 2023
1 parent 7d684df commit a711896
Show file tree
Hide file tree
Showing 4 changed files with 1,645 additions and 994 deletions.
24 changes: 12 additions & 12 deletions ember-link/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,30 +46,30 @@
"start": "rollup --config --watch"
},
"dependencies": {
"@embroider/addon-shim": "^1.8.4",
"@glimmer/env": "^0.1.7",
"@glimmer/tracking": "^1.0.3"
"@embroider/addon-shim": "^1.8.5",
"@glimmer/env": "^0.1.7"
},
"peerDependencies": {
"@ember/test-helpers": "^2.9.3"
"@ember/test-helpers": "^2.9.3",
"@glimmer/tracking": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@babel/plugin-proposal-decorators": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@babel/runtime": "^7.22.3",
"@ember/test-helpers": "^2.9.3",
"@embroider/addon-dev": "^3.0.0",
"@embroider/addon-dev": "^3.1.0",
"@gossi/config-eslint": "^0.3.1",
"@gossi/config-prettier": "^0.3.1",
"@tsconfig/ember": "^2.0.0",
"@types/qunit": "^2.19.5",
"concurrently": "^8.0.1",
"ember-source": "^4.12.0",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"rollup": "^3.18.0",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"rollup": "3.21.8",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^5.0.4"
Expand Down
5 changes: 3 additions & 2 deletions ember-link/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import typescript from 'rollup-plugin-ts';
import copy from 'rollup-plugin-copy';
import { Addon } from '@embroider/addon-dev/rollup';
import { defineConfig } from 'rollup';

const addon = new Addon({
srcDir: 'src',
destDir: 'dist'
});

export default {
export default defineConfig({
// This provides defaults that work well alongside `publicEntrypoints` below.
// You can augment this if you need to.
output: addon.output(),
Expand Down Expand Up @@ -59,4 +60,4 @@ export default {
]
})
]
};
});
Loading

0 comments on commit a711896

Please sign in to comment.