Skip to content

Commit

Permalink
feat: add withDragAndDrop to build
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Sittenauer committed Aug 13, 2024
1 parent 017157f commit bfc5d99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ console.log(chalk.blue('[BEGIN BUILD]'))
console.log(chalk.blue('Building js'))
// build distributables
await $`NODE_ENV=production rollup -c`
console.log(chalk.blue(`Compiling 'lib' js files`))
//console.log(chalk.blue(`Compiling 'lib' js files`))
// build files used for overrides
await $`NODE_ENV=production RBC_CJS_BUILD=true babel src --out-dir lib`
// await $`NODE_ENV=production RBC_CJS_BUILD=true babel src --out-dir lib`
console.log(chalk.blue(`Copying SASS files to 'lib'`))
// and since we don't currently use CSS modules...
await fs.copy('./src/sass', './lib/sass')
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ export { default as dateFnsLocalizer } from './localizers/date-fns'
export { default as dayjsLocalizer } from './localizers/dayjs'
export { default as move } from './utils/move'
export { views as Views, navigate as Navigate } from './utils/constants'
export { default as withDragAndDrop } from './addons/dragAndDrop/index'

0 comments on commit bfc5d99

Please sign in to comment.