Skip to content

Commit

Permalink
chore(deps): update Nx to v16.9.1 (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgonzalezr committed Oct 11, 2023
1 parent 15bd2ca commit 1f1504d
Show file tree
Hide file tree
Showing 45 changed files with 5,032 additions and 1,838 deletions.
24 changes: 8 additions & 16 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -27,36 +27,36 @@
/**
* Time required before a new release is considered stable.
*/
minimumReleaseAge: '15 days',
minimumReleaseAge: '7 days',
/**
* Package rules lets you apply rules to individual packages
* or to groups of packages using regex pattern matching.
*/
packageRules: [
{
groupName: '@angular',
matchPackagePrefixes: ['@angular'],
groupName: 'angular',
matchPackagePrefixes: ['@angular', '@schematics'],
allowedVersions: '<15.0.0',
},
{
groupName: '@commitlint',
groupName: 'commitlint',
matchPackagePrefixes: ['@commitlint/'],
},
{
groupName: '@nx',
groupName: 'nx',
matchPackagePrefixes: ['@nx', 'nx'],
excludePackageNames: ['nx-cloud', 'nx-stylelint'],
},
{
groupName: '@stencil',
groupName: 'stencil',
matchPackagePrefixes: ['@stencil/'],
},
{
groupName: '@storybook',
groupName: 'storybook',
matchPackagePrefixes: ['@storybook/', 'storybook'],
},
{
groupName: '@swc',
groupName: 'swc',
matchPackagePrefixes: ['@swc'],
},
{
Expand All @@ -81,14 +81,6 @@
matchPackagePrefixes: ['prettier'],
excludePackageNames: ['prettier', 'eslint-plugin-prettier'],
},
{
matchPackageNames: ['prettier'],
allowedVersions: '<3.0.0',
},
{
matchPackageNames: ['eslint-plugin-prettier'],
allowedVersions: '<5.0.0',
},
{
groupName: 'stylelint',
matchPackagePrefixes: ['stylelint'],
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

# compiled output
/dist
/tmp
/out-tsc
/tmp/**

# source files to ignore
.angular
Expand All @@ -15,7 +15,6 @@ packages/beeq/src/components/icon/svg/**
packages/beeq-angular/**/directives
packages/beeq-react/src/react-component-lib
packages/beeq-react/src/components.ts
packages/beeq-icons/temp/**
!.gitkeep

# dependencies
Expand Down
4 changes: 2 additions & 2 deletions babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
}
],
[
"@babel/plugin-proposal-private-methods",
"@babel/plugin-transform-private-methods",
{
"loose": true
}
],
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-object-rest-spread",
{
"loose": true,
"useBuiltIns": true
Expand Down
11 changes: 9 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"test": {
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"]
},
"e2e": {
"dependsOn": ["build"],
"inputs": ["default", "^production"]
}
},
Expand All @@ -41,7 +43,7 @@
"cacheableOperations": [
"build",
"e2e",
"generate-icons",
"icons",
"lint",
"storybook-build",
"storybook-build-css",
Expand Down Expand Up @@ -73,5 +75,10 @@
"@nx/angular:component": {
"style": "scss"
}
},
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
}
}
}
Loading

0 comments on commit 1f1504d

Please sign in to comment.