Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STRWEB-69: Add support for transpilation #73

Merged
merged 47 commits into from
Mar 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
312b8d4
Add support for transpilation
mkuklis Jun 30, 2022
9a6e70f
Cleanup
mkuklis Jun 30, 2022
b3f46db
Merge branch 'master' into transpile
mkuklis Aug 23, 2022
147556c
Cleanup
mkuklis Aug 23, 2022
f3c0be7
Continue on transpilation
mkuklis Aug 24, 2022
f489da9
Cleanup
mkuklis Aug 24, 2022
08e7e4a
Cleanup
mkuklis Aug 24, 2022
164e4e1
Cleanup
mkuklis Aug 24, 2022
9bc97b2
More work on transpilation
mkuklis Aug 25, 2022
0865cf3
Cleanup
mkuklis Aug 26, 2022
96a7752
Cleanup
mkuklis Aug 26, 2022
bf2d685
Cleanup
mkuklis Aug 26, 2022
36088b7
Cleanup
mkuklis Aug 26, 2022
cdd84ed
Cleanup
mkuklis Aug 26, 2022
afc0047
Merge branch 'master' into transpile
mkuklis Oct 31, 2022
cb94f8e
Cleanup
mkuklis Oct 31, 2022
bb7c220
Cleanup
mkuklis Oct 31, 2022
789051c
More work on transpilation
mkuklis Nov 1, 2022
79aad19
Cleanup
mkuklis Nov 1, 2022
18400ec
Cleanup
mkuklis Nov 1, 2022
6525b6d
Cleanup
mkuklis Nov 1, 2022
0f6b317
Handle already transpiled CSS files
mkuklis Nov 2, 2022
453d42a
Cleanup
mkuklis Nov 2, 2022
93fc9d8
Cleanup
mkuklis Nov 2, 2022
18b02d2
Fix tests
mkuklis Nov 2, 2022
3eb901a
Add woff2 support
mkuklis Nov 6, 2022
1e9ea48
Remove empty scripts
mkuklis Nov 6, 2022
575250f
Merge branch 'master' into transpile
mkuklis Dec 9, 2022
205cd93
skip stripes-ui from transpilation
mkuklis Jan 27, 2023
ea0a1e1
Merge branch 'master' into transpile
mkuklis Jan 27, 2023
fbe69a7
Add disableDeprecationNotice to postcss
mkuklis Jan 27, 2023
937663b
Improve path resolution
mkuklis Jan 30, 2023
8ea65dd
Update css entry
mkuklis Jan 30, 2023
1877c08
use path.sep
mkuklis Jan 31, 2023
11955af
Cleanup
mkuklis Jan 31, 2023
f4e5bab
Adjust css dist path regex
mkuklis Jan 31, 2023
b59901b
More cleanup for Windows
mkuklis Feb 2, 2023
0fbb250
Merge branch 'master' into transpile
mkuklis Mar 8, 2023
96e92ec
Fix tests
mkuklis Mar 8, 2023
0fca9ff
Merge branch 'master' into transpile
mkuklis Mar 9, 2023
9f380b4
Cleanup css based on feedback
mkuklis Mar 9, 2023
41c4ce9
Adjust tsconfig
mkuklis Mar 9, 2023
09096b1
Cleanup
mkuklis Mar 9, 2023
9c9c981
Remove only to run all tests
mkuklis Mar 15, 2023
6033b23
Adjust dependencies
mkuklis Mar 17, 2023
12f4b4e
Add ts and tsx to babel-loader test in transpilation config
mkuklis Mar 17, 2023
1dcc971
Adjust shared styles
mkuklis Mar 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add ts and tsx to babel-loader test in transpilation config
  • Loading branch information
mkuklis committed Mar 17, 2023
commit 12f4b4ef916fba9e469130a21535468f92ddc280
2 changes: 1 addition & 1 deletion webpack.config.cli.transpile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const config = {
module: {
rules: [
{
test: /\.(js|jsx)$/,
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: babelOptions,
Expand Down