Skip to content

Commit e8270ad

Browse files
committed
6.0.1
1 parent 9c1fb4e commit e8270ad

33 files changed

Lines changed: 40049 additions & 41834 deletions

book/eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ const config = makeConfig();
44

55
config.push({
66
ignores: ['**/global.declaration.ts'],
7+
rules: {
8+
'package-json/require-type': 'off',
9+
},
710
});
811

912
module.exports = config;

book/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rockpack/book",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "",
55
"license": "ISC",
66
"author": "",
@@ -22,9 +22,9 @@
2222
"devDependencies": {
2323
"@prerenderer/renderer-puppeteer": "1.2.4",
2424
"@prerenderer/webpack-plugin": "5.3.10",
25-
"@rockpack/codestyle": "6.0.0",
26-
"@rockpack/compiler": "6.0.0",
27-
"@rockpack/tsconfig": "6.0.0",
25+
"@rockpack/codestyle": "6.0.1",
26+
"@rockpack/compiler": "6.0.1",
27+
"@rockpack/tsconfig": "6.0.1",
2828
"@types/react": "18.2.28",
2929
"@types/react-dom": "18.2.13",
3030
"@types/react-helmet": "6.1.7",

book/src/types/global.declaration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ declare module '*.less' {
5656
}
5757

5858
declare module '*.module.css' {
59-
const classes: { [key: string]: string };
59+
const classes: Record<string, string>;
6060
export default classes;
6161
}
6262

6363
declare module '*.module.scss' {
64-
const classes: { [key: string]: string };
64+
const classes: Record<string, string>;
6565
export default classes;
6666
}
6767

6868
declare module '*.module.less' {
69-
const classes: { [key: string]: string };
69+
const classes: Record<string, string>;
7070
export default classes;
7171
}
7272

7373
declare module '*.module.sass' {
74-
const classes: { [key: string]: string };
74+
const classes: Record<string, string>;
7575
export default classes;
7676
}

next/api/eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ config.push({
88
rules: {
99
camelcase: ['error', { allow: camelCaseAllow, properties: 'always' }],
1010
'no-console': 'off',
11+
'package-json/require-type': 'off',
1112
},
1213
});
1314

next/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-starter",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "",
55
"license": "ISC",
66
"author": "",
@@ -55,9 +55,9 @@
5555
"yargs": "17.7.2"
5656
},
5757
"devDependencies": {
58-
"@rockpack/codestyle": "6.0.0",
59-
"@rockpack/compiler": "6.0.0",
60-
"@rockpack/tester": "6.0.0",
58+
"@rockpack/codestyle": "6.0.1",
59+
"@rockpack/compiler": "6.0.1",
60+
"@rockpack/tester": "6.0.1",
6161
"@types/dotenv-safe": "8.1.6",
6262
"@types/enzyme": "3.10.18",
6363
"@types/jsonwebtoken": "9.0.7",

next/web-client/eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ config.push({
88
rules: {
99
camelcase: ['error', { allow: camelCaseAllow, properties: 'always' }],
1010
'no-console': 'off',
11+
'package-json/require-type': 'off',
1112
},
1213
});
1314

next/web-client/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-starter",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "",
55
"scripts": {
66
"analyzer": "node scripts.build --analyzer",
@@ -53,10 +53,10 @@
5353
"@issr/babel-plugin": "2.2.0",
5454
"@localazer/po2json": "3.1.0",
5555
"@localazer/webpack-plugin": "3.1.0",
56-
"@rockpack/codestyle": "6.0.0",
57-
"@rockpack/compiler": "6.0.0",
58-
"@rockpack/tester": "6.0.0",
59-
"@rockpack/tsconfig": "6.0.0",
56+
"@rockpack/codestyle": "6.0.1",
57+
"@rockpack/compiler": "6.0.1",
58+
"@rockpack/tester": "6.0.1",
59+
"@rockpack/tsconfig": "6.0.1",
6060
"@storybook/addon-actions": "5.3.21",
6161
"@storybook/addon-backgrounds": "5.3.21",
6262
"@storybook/addon-cssresources": "5.3.21",

0 commit comments

Comments
 (0)