Skip to content

Commit

Permalink
chore(deps): try upgrading to Au2 beta 17 (#1205)
Browse files Browse the repository at this point in the history
* chore(deps): try upgrading to Au2 beta 17

* chore: use transpileOnly to upgrade to beta 17
  • Loading branch information
ghiscoding committed May 12, 2024
1 parent 70a88a3 commit ab8d4dc
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 155 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@aurelia/fetch-client": "2.0.0-beta.16",
"@aurelia/platform": "2.0.0-beta.16",
"@aurelia/platform-browser": "2.0.0-beta.16",
"@aurelia/fetch-client": "2.0.0-beta.17",
"@aurelia/platform": "2.0.0-beta.17",
"@aurelia/platform-browser": "2.0.0-beta.17",
"@formkit/tempo": "^0.1.1",
"@jest/types": "^29.6.3",
"@lerna-lite/cli": "^3.3.3",
Expand Down
8 changes: 4 additions & 4 deletions packages/aurelia-slickgrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
"pack": "npm pack"
},
"peerDependencies": {
"aurelia": "^2.0.0-beta.16"
"aurelia": "^2.0.0-beta.17"
},
"dependencies": {
"@aurelia/i18n": "2.0.0-beta.16",
"@aurelia/runtime": "2.0.0-beta.16",
"@aurelia/runtime-html": "2.0.0-beta.16",
"@aurelia/i18n": "2.0.0-beta.17",
"@aurelia/runtime": "2.0.0-beta.17",
"@aurelia/runtime-html": "2.0.0-beta.17",
"@formkit/tempo": "^0.1.1",
"@slickgrid-universal/common": "~5.0.1",
"@slickgrid-universal/custom-footer-component": "~5.0.1",
Expand Down
22 changes: 11 additions & 11 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
"serve:demo": "servor ./website index.html 9000"
},
"dependencies": {
"@aurelia/fetch-client": "2.0.0-beta.16",
"@aurelia/i18n": "2.0.0-beta.16",
"@aurelia/kernel": "2.0.0-beta.16",
"@aurelia/metadata": "2.0.0-beta.16",
"@aurelia/router": "2.0.0-beta.16",
"@aurelia/runtime": "2.0.0-beta.16",
"@aurelia/runtime-html": "2.0.0-beta.16",
"@aurelia/fetch-client": "2.0.0-beta.17",
"@aurelia/i18n": "2.0.0-beta.17",
"@aurelia/kernel": "2.0.0-beta.17",
"@aurelia/metadata": "2.0.0-beta.17",
"@aurelia/router": "2.0.0-beta.17",
"@aurelia/runtime": "2.0.0-beta.17",
"@aurelia/runtime-html": "2.0.0-beta.17",
"@faker-js/faker": "^8.4.1",
"@fnando/sparkline": "^0.3.10",
"@formkit/tempo": "^0.1.1",
Expand All @@ -52,17 +52,17 @@
"@slickgrid-universal/row-detail-view-plugin": "^5.0.1",
"@slickgrid-universal/rxjs-observable": "^5.0.1",
"@slickgrid-universal/text-export": "^5.0.1",
"aurelia": "2.0.0-beta.16",
"aurelia": "2.0.0-beta.17",
"aurelia-slickgrid": "workspace:*",
"bootstrap": "^5.3.3",
"i18next": "^23.11.4",
"i18next-fetch-backend": "^6.0.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@aurelia/testing": "2.0.0-beta.16",
"@aurelia/ts-jest": "2.0.0-beta.16",
"@aurelia/webpack-loader": "2.0.0-beta.16",
"@aurelia/testing": "2.0.0-beta.17",
"@aurelia/ts-jest": "2.0.0-beta.17",
"@aurelia/webpack-loader": "2.0.0-beta.17",
"@types/dompurify": "^3.0.5",
"@types/fnando__sparkline": "^0.3.7",
"@types/jest": "^29.5.12",
Expand Down
10 changes: 9 additions & 1 deletion packages/demo/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,15 @@ module.exports = ({ production, node } = {}, { server } = {}, { analyze } = {})
{ test: /\.(sass|scss)$/, use: ['style-loader', 'css-loader', 'sass-loader'], issuer: /\.[tj]s$/i },
{ test: /\.(sass|scss)$/, use: ['css-loader', 'sass-loader'], issuer: /\.html?$/i },
// { test: /\.js$/, enforce: 'pre', use: ['source-map-loader'], include: [/aurelia-slickgrid/] },
{ test: /\.ts$/i, use: ['ts-loader', '@aurelia/webpack-loader'], exclude: /node_modules/ },
{ test: /\.ts$/i, use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true
}
},
'@aurelia/webpack-loader'
], exclude: /node_modules/ },
{
test: /[/\\](?:src|dev-app)[/\\].+\.html$/i,
use: {
Expand Down

0 comments on commit ab8d4dc

Please sign in to comment.