Skip to content

Commit fcebebf

Browse files
author
Daniel Del Core
committed
reverts require back to require resolve for now
1 parent de3039f commit fcebebf

File tree

52 files changed

+135
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+135
-128
lines changed

community/@atlaskit__avatar/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@codeshift/cli": "^0.14.0",
1919
"@codeshift/test-utils": "^0.3.0",
20-
"@types/jest": "^26.0.15",
20+
"@types/jest": "^29.0.0",
2121
"@types/node": "^16.11.0",
22-
"jest": "^26.6.0",
22+
"jest": "^29.0.0",
2323
"prettier": "^2.0.0",
24-
"ts-jest": "^26.4.4",
24+
"ts-jest": "^29.0.0",
2525
"typescript": "^4.5.5"
2626
},
2727
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community/@atlaskit__avatar"

community/@atlaskit__avatar/src/18.0.0/__tests__/transform.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('Update Avatar props', () => {
2424
import Avatar from '@atlaskit/avatar';
2525
2626
const App = () => {
27-
return <Tooltip content=\\"foo\\"><Avatar name=\\"foo\\" /></Tooltip>;
27+
return <Tooltip content="foo"><Avatar name="foo" /></Tooltip>;
2828
}"
2929
`);
3030
});

community/@atlaskit__avatar/src/codeshift.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
maintainers: ['danieldelcore'],
33
targets: ['@atlaskit/avatar'],
44
transforms: {
5-
'18.0.0': require('./18.0.0/transform'),
6-
'19.0.0': require('./19.0.0/transform'),
5+
'18.0.0': require.resolve('./18.0.0/transform'),
6+
'19.0.0': require.resolve('./19.0.0/transform'),
77
},
88
};

community/@atlaskit__breadcrumbs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@codeshift/cli": "^0.14.0",
1919
"@codeshift/test-utils": "^0.3.0",
20-
"@types/jest": "^26.0.15",
20+
"@types/jest": "^29.0.0",
2121
"@types/node": "^16.11.0",
22-
"jest": "^26.6.0",
22+
"jest": "^29.0.0",
2323
"prettier": "^2.0.0",
24-
"ts-jest": "^26.4.4",
24+
"ts-jest": "^29.0.0",
2525
"typescript": "^4.5.5"
2626
},
2727
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community/@atlaskit__breadcrumbs"

community/@atlaskit__breadcrumbs/src/codeshift.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = {
22
maintainers: ['danieldelcore'],
33
targets: ['@atlaskit/breadcrumbs'],
44
transforms: {
5-
'11.0.0': require('./11.0.0/transform'),
5+
'11.0.0': require.resolve('./11.0.0/transform'),
66
},
77
};

community/@atlaskit__button/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@codeshift/cli": "^0.14.0",
1919
"@codeshift/test-utils": "^0.3.0",
20-
"@types/jest": "^26.0.15",
20+
"@types/jest": "^29.0.0",
2121
"@types/node": "^16.11.0",
22-
"jest": "^26.6.0",
22+
"jest": "^29.0.0",
2323
"prettier": "^2.0.0",
24-
"ts-jest": "^26.4.4",
24+
"ts-jest": "^29.0.0",
2525
"typescript": "^4.5.5"
2626
},
2727
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community/@atlaskit__button"

community/@atlaskit__button/src/codeshift.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
maintainers: ['danieldelcore'],
33
targets: ['@atlaskit/button'],
44
transforms: {
5-
'15.0.0': require('./15.0.0/transform'),
6-
'15.1.1': require('./15.1.1/transform'),
5+
'15.0.0': require.resolve('./15.0.0/transform'),
6+
'15.1.1': require.resolve('./15.1.1/transform'),
77
},
88
};

community/@atlaskit__calendar/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@codeshift/cli": "^0.14.0",
1919
"@codeshift/test-utils": "^0.3.0",
20-
"@types/jest": "^26.0.15",
20+
"@types/jest": "^29.0.0",
2121
"@types/node": "^16.11.0",
22-
"jest": "^26.6.0",
22+
"jest": "^29.0.0",
2323
"prettier": "^2.0.0",
24-
"ts-jest": "^26.4.4",
24+
"ts-jest": "^29.0.0",
2525
"typescript": "^4.5.5"
2626
},
2727
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community/@atlaskit__calendar"

community/@atlaskit__calendar/src/codeshift.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = {
22
maintainers: ['danieldelcore'],
33
targets: ['@atlaskit/calendar'],
44
transforms: {
5-
'11.0.0': require('./11.0.0/transform'),
5+
'11.0.0': require.resolve('./11.0.0/transform'),
66
},
77
};

community/@atlaskit__checkbox/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"devDependencies": {
1818
"@codeshift/cli": "^0.14.0",
1919
"@codeshift/test-utils": "^0.3.0",
20-
"@types/jest": "^26.0.15",
20+
"@types/jest": "^29.0.0",
2121
"@types/node": "^16.11.0",
22-
"jest": "^26.6.0",
22+
"jest": "^29.0.0",
2323
"prettier": "^2.0.0",
24-
"ts-jest": "^26.4.4",
24+
"ts-jest": "^29.0.0",
2525
"typescript": "^4.5.5"
2626
},
2727
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community/@atlaskit__checkbox"

0 commit comments

Comments
 (0)