Skip to content
New issue

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

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

Already on GitHub? # to your account

feat: added default note on render #22

Merged
merged 13 commits into from
Jun 3, 2021
23 changes: 0 additions & 23 deletions .circleci/config.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -22,3 +22,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock
debug.log*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dnotebook-react

Recreatiing the essential part of [Dnotebook](https://playnotebook.jsdata.org/) using react. See old repo [here](https://github.com/opensource9ja/dnotebook)
Recreating the essential part of [Dnotebook](https://playnotebook.jsdata.org/) using react. See old repo [here](https://github.com/opensource9ja/dnotebook)

## Component Structure
Cell.js --> Contains all operation pertaining to a cell block
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { presets: ["@babel/preset-env"] };
7 changes: 0 additions & 7 deletions craco.config.js

This file was deleted.

1 change: 0 additions & 1 deletion debug.log

This file was deleted.

14 changes: 14 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const tsPreset = require("ts-jest/jest-preset");
const puppeteerPreset = require("jest-puppeteer/jest-preset");

module.exports = {
...tsPreset,
...puppeteerPreset,
transform: {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest",
},
globalSetup: "jest-environment-puppeteer/setup",
globalTeardown: "jest-environment-puppeteer/teardown",
testEnvironment: "jest-environment-puppeteer",
};
Loading