Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ stats.html
!.vscode/settings.json

.coveralls.yml
packages/example/build
packages/examples-react/build
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import { renderExample } from '../../example/src/index';
import { renderExample } from '../../examples-react/src/index';
import { materialRenderers, materialCells } from '../src';

renderExample(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var copyWebpackPlugin = require("copy-webpack-plugin");
module.exports = merge(baseConfig, {
plugins: [
new copyWebpackPlugin([
{ from: '../example/src/logo.svg' },
{ from: '../examples-react/src/logo.svg' },
])
],
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
vanillaCells,
vanillaRenderers,
} from '../src';
import { renderExample } from '../../example/src/index';
import { renderExample } from '../../examples-react/src/index';

renderExample(vanillaRenderers, vanillaCells);
createThemeSelection();
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = merge(baseConfig, {
new copyWebpackPlugin([
{ from: './example/example.css' },
{ from: './example/example.dark.css' },
{ from: '../example/src/logo.svg' },
{ from: '../examples-react/src/logo.svg' },
])
],
});