Skip to content

Commit 5a41594

Browse files
Merge pull request #200 from hypermod-io/typescript-bundler
Move package transpiling to tsc
2 parents a5ad460 + b10fc6a commit 5a41594

File tree

45 files changed

+242
-2866
lines changed

Some content is hidden

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

45 files changed

+242
-2866
lines changed

.changeset/cuddly-owls-reflect.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
'@hypermod/mod-atlaskit__progress-indicator': patch
3+
'@hypermod/mod-atlaskit__section-message': patch
4+
'@hypermod/mod-atlaskit__side-navigation': patch
5+
'@hypermod/mod-atlaskit__breadcrumbs': patch
6+
'@hypermod/mod-atlaskit__textfield': patch
7+
'@hypermod/mod-atlaskit__calendar': patch
8+
'@hypermod/mod-atlaskit__checkbox': patch
9+
'@hypermod/mod-atlaskit__textarea': patch
10+
'@hypermod/mod-atlaskit__spinner': patch
11+
'@hypermod/mod-emotion__monorepo': patch
12+
'@hypermod/mod-atlaskit__avatar': patch
13+
'@hypermod/mod-atlaskit__button': patch
14+
'@hypermod/mod-atlaskit__popper': patch
15+
'@hypermod/mod-atlaskit__toggle': patch
16+
'@hypermod/mod-atlaskit__popup': patch
17+
'@hypermod/mod-atlaskit__range': patch
18+
'@hypermod/mod-atlaskit__icon': patch
19+
'@hypermod/mod-atlaskit__menu': patch
20+
'@hypermod/mod-atlaskit__tag': patch
21+
'@hypermod/mod-memoize-one': patch
22+
'@hypermod/mod-javascript': patch
23+
'@hypermod/initializer': patch
24+
'@codeshift/cli': patch
25+
'@hypermod/validator': patch
26+
'@hypermod/fetcher': patch
27+
'@hypermod/mod-react': patch
28+
'@hypermod/types': patch
29+
'@hypermod/utils': patch
30+
'@hypermod/core': patch
31+
'@hypermod/cli': patch
32+
---
33+
34+
Bumps typescript to 5.2.2

.github/workflows/validate.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
- run: npm install -g yarn
2424
- run: yarn install --frozen-lockfile
2525
- run: yarn build
26+
- run: git status
27+
- name: Check for changes
28+
run: |
29+
if [ $(git status --porcelain | wc -l) -ne 0 ]; then
30+
echo "::error::Changes detected (modified or added files)"
31+
exit 1
32+
fi
2633
- run: yarn validate
2734
env:
2835
CI: true

community/@atlaskit__avatar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__avatar"
2727
}

community/@atlaskit__breadcrumbs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__breadcrumbs"
2727
}

community/@atlaskit__button/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__button"
2727
}

community/@atlaskit__calendar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__calendar"
2727
}

community/@atlaskit__checkbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__checkbox"
2727
}

community/@atlaskit__icon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"jest": "^29.0.0",
2222
"prettier": "^2.0.0",
2323
"ts-jest": "^29.0.0",
24-
"typescript": "^4.5.5"
24+
"typescript": "^5.2.2"
2525
},
2626
"repository": "https://github.com/hypermod-io/hypermod-community/tree/main/community/@atlaskit__icon"
2727
}

0 commit comments

Comments
 (0)