Skip to content

Commit b1b5503

Browse files
authored
Added Build Code for typing file (#110)
2 parents 764b366 + 0b1e55d commit b1b5503

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.3.1](https://github.com/react-scheduler/react-big-schedule/compare/4.3.0...4.3.1)
2+
3+
`2023-10-16`
4+
5+
- Updated Build Code by adding typing file `index.d.ts` by [@ansulagrawal](https://github.com/ansulagrawal) in [#110](https://github.com/react-scheduler/react-big-schedule/pull/110).
6+
17
## [4.3.0](https://github.com/react-scheduler/react-big-schedule/compare/4.2.5...4.3.0)
28

39
`2023-10-16`
@@ -15,8 +21,8 @@
1521
- ESLint Configration by [@ansulagrawal](https://github.com/ansulagrawal) in [#93](https://github.com/react-scheduler/react-big-schedule/pull/93).
1622
- Fix some eslint issues and update some package versions by [@ansulagrawal](https://github.com/ansulagrawal) in [#104](https://github.com/react-scheduler/react-big-schedule/pull/104).
1723
- Apply fixes from CodeFactor by [@ansulagrawal](https://github.com/ansulagrawal) in [#105](https://github.com/react-scheduler/react-big-schedule/pull/105).
18-
- Fix Eslint Errors by [@ansulagrawal](https://github.com/ansulagrawal) in [#106](https://github.com/react-scheduler/react-big-schedule/pull/108).
19-
- Updated ChangeLog by [@ansulagrawal](https://github.com/ansulagrawal) in [#105](https://github.com/react-scheduler/react-big-schedule/pull/109).
24+
- Fix Eslint Errors by [@ansulagrawal](https://github.com/ansulagrawal) in [#108](https://github.com/react-scheduler/react-big-schedule/pull/108).
25+
- Updated ChangeLog by [@ansulagrawal](https://github.com/ansulagrawal) in [#109](https://github.com/react-scheduler/react-big-schedule/pull/109).
2026

2127
## [4.2.5](https://github.com/react-scheduler/react-big-schedule/compare/4.2.4...4.2.5)
2228

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-big-schedule",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "React Big Schedule is a powerful and intuitive scheduler and resource planning solution built with React. Seamlessly integrate this modern browser-compatible component into your applications to effectively manage time, appointments, and resources. With drag-and-drop functionality, interactive UI, and granular views, react-big-schedule empowers users to effortlessly schedule and allocate resources with precision. Enhance productivity and streamline your workflow with this React-based solution, designed to optimize time management and simplify calendar-based operations. Perfect for applications requiring advanced scheduling capabilities, react-big-schedule offers a seamless and intuitive experience for managing appointments, resource allocation, and time slots. Unlock the potential of your React projects with react-big-schedule and revolutionize the way you handle scheduling and resource planning. It is the updated version of react-big-scheduler",
55
"keywords": [
66
"react-big-schedule",

scripts/build.js

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ async function build() {
1919
const root = path.resolve(__dirname, '..');
2020
const sourceDir = path.resolve(root, 'src');
2121
const targetDir = path.resolve(root, 'dist');
22+
const typingDir = path.resolve(root, 'typing');
2223
const jsTarget = targetDir;
2324
const cssTarget = path.resolve(targetDir, 'css');
2425
const excludedFolders = ['examples', 'main.jsx'];
@@ -35,6 +36,9 @@ async function build() {
3536
process.stdout.write('Copying CSS Files... \n');
3637
await fs.copy(`${sourceDir}/css/`, cssTarget);
3738

39+
process.stdout.write('Copying Typescript Files... \n');
40+
await fs.copy(`${typingDir}/`, targetDir);
41+
3842
process.stdout.write('Success! \n');
3943
} catch (e) {
4044
console.log(e);

0 commit comments

Comments
 (0)