Skip to content

Commit

Permalink
Podlove Player 6 Intro (#1121)
Browse files Browse the repository at this point in the history
Podlove 6 Player Intro
  • Loading branch information
alexander-heimbuch authored Nov 23, 2023
1 parent b590e74 commit d4f22e1
Show file tree
Hide file tree
Showing 1,404 changed files with 67,073 additions and 76,034 deletions.
20 changes: 20 additions & 0 deletions .build/aliases.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import path from 'path'

export default {
'@podlove/subscribe-button': path.resolve(__dirname, '../packages/subscribe-button/src'),
'@podlove/player': path.resolve(__dirname, '../packages/player/src'),

'@podlove/clients': path.resolve(__dirname, '../packages/clients/src'),
'@podlove/utils': path.resolve(__dirname, '../packages/utils/src'),
'@podlove/components': path.resolve(__dirname, '../packages/components/src/components'),

'@podlove/button-actions': path.resolve(__dirname, '../packages/button/actions'),
'@podlove/button-config': path.resolve(__dirname, '../packages/button/config'),
'@podlove/button-react': path.resolve(__dirname, '../packages/button/react/src'),
'@podlove/button-state': path.resolve(__dirname, '../packages/button/state'),

'@podlove/player-actions': path.resolve(__dirname, '../packages/player/actions'),
'@podlove/player-config': path.resolve(__dirname, '../packages/player/config'),
'@podlove/player-sagas': path.resolve(__dirname, '../packages/player/sagas'),
'@podlove/player-state': path.resolve(__dirname, '../packages/player/state'),
}
1 change: 1 addition & 0 deletions .build/extensions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
8 changes: 8 additions & 0 deletions .build/postcss.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const path = require('path');

module.exports = {
plugins: {
tailwindcss: { config: path.resolve(__dirname, './tailwind.config.cjs') },
autoprefixer: {}
}
};
12 changes: 12 additions & 0 deletions .build/tailwind.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
theme: {
extend: {
screens: {
mobile: { min: '0px', max: '599px' },
tablet: '600px',
desktop: '950px'
}
}
},
content: ['./src/**/*.{html,js,vue}']
}
Loading

0 comments on commit d4f22e1

Please sign in to comment.