Skip to content

Commit

Permalink
Drop examples package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Jan 16, 2024
1 parent 64c6b76 commit eb1ee36
Show file tree
Hide file tree
Showing 19 changed files with 41 additions and 23,968 deletions.
21 changes: 12 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,26 @@ target/
# Editors and IDEs
.ropeproject/

# PyCharm IDE
.idea
.vscode

# pyenv
.python-version

# General
.direnv
.envrc
.tool-versions

# Project-specific
examples/**/ve/
examples/**/venv/
examples/**/node_modules/
examples/**/assets/bundles/
examples/**/assets/webpack_bundles/
examples/**/webpack-stats.json
examples/**/package-lock.json

tests/ve/
tests/ve3/
Expand All @@ -85,12 +97,3 @@ tests/assets/django_webpack_loader_bundles/
tests/webpack-stats.json
tests/webpack-stats-app2.json
tests/webpack-stats-getFiles.json

# PyCharm IDE
.idea
.vscode

# General
.direnv
.envrc
.tool-versions
1 change: 1 addition & 0 deletions examples/code-splitting/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
6 changes: 4 additions & 2 deletions examples/code-splitting/assets/js/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { createRoot } from 'react-dom/client';

import App from './app';

ReactDOM.render(<App/>, document.getElementById('react-app'));
const container = document.getElementById('react-app');
const root = createRoot(container);
root.render(<App/>);
Loading

0 comments on commit eb1ee36

Please sign in to comment.