Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9ed7a9d
Remove the movehub extension and everything specific to this type of …
HaudinFlorence Aug 12, 2026
6af5e01
Move code from bluetooth-extension to bluetooth.
HaudinFlorence Aug 12, 2026
dfcf9bf
Use lerna and re-organize the repo into the structure of a monorepo.
HaudinFlorence Aug 12, 2026
ec70b23
Update package.json and tsconfig.json files to take review comments i…
HaudinFlorence Aug 12, 2026
aea0b41
Fix various errors and conflicting versions.
HaudinFlorence Aug 12, 2026
e6cf3bc
Keep on trying to build and fix errors.
HaudinFlorence Aug 13, 2026
8591f3b
Fix imports in bluetooth-extension.
HaudinFlorence Aug 13, 2026
4f7693f
Add a style directory with an empty index.js in bluetooth-extension.
HaudinFlorence Aug 13, 2026
21f2b36
Try to fix jupyter lab console errors.
HaudinFlorence Aug 13, 2026
4e40520
Update style directory for bluetooth-extension package.
HaudinFlorence Aug 14, 2026
7356541
Update pyproject.toml.
HaudinFlorence Aug 14, 2026
2c024cd
Remove @types/node from the devDependencies of the global package.json.
HaudinFlorence Aug 14, 2026
becceba
Update lint dependencies and config in package.json files.
HaudinFlorence Aug 17, 2026
4a056e3
Add jest dependencies in global package.json.
HaudinFlorence Aug 17, 2026
81c7857
Remove type defined as module in the global package.json.
HaudinFlorence Aug 17, 2026
2be82b5
Try to fix configuration related to tests.
HaudinFlorence Aug 17, 2026
4b12f9b
Remove test file in ui-tests/tests.
HaudinFlorence Aug 17, 2026
cb1f605
Remove unnecessary css/js style files and related dependencies.
HaudinFlorence Aug 17, 2026
1cae2d2
Update README in ui-tests.
HaudinFlorence Aug 17, 2026
b302c92
Try to fix failing lint tests.
HaudinFlorence Aug 17, 2026
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
4 changes: 0 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:

# install a dev version of the bluetooth-manager extension
python -m pip install .
- name: Build the JupyterLite site
shell: bash -l {0}
run: |
jupyter lite build --output-dir dist --contents examples/test-widget-with-ipykernel.ipynb

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
8 changes: 0 additions & 8 deletions LICENSE

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's keep a license there, and copy it in both underlying packages

Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,3 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


Lego Boost Browser Files License
================================

The files that are in /movehub-extension/moveHub directory are initially forked from https://github.com/ttu/lego-boost-browser and for some of them then partially modified.

Lego Boost Browser repository is licensed under the "MIT" license.
48 changes: 48 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import js from '@eslint/js';
import tseslint from 'typescript-eslint';
import globals from 'globals';

export default tseslint.config(
{
ignores: [
'**/node_modules/**',
'**/lib/**',
'**/build/**',
'**/dist/**',
'**/coverage/**',
'**/.webpack/**',
'**/jupyter_bluetooth_manager/labextension/**'
]
},

js.configs.recommended,

...tseslint.configs.recommended,

{
files: [
'babel.config.js',
'jest.config.js',
'webpack.config.js',
'ui-tests/**/*.js'
],

languageOptions: {
globals: globals.node
},

rules: {
'@typescript-eslint/no-require-imports': 'off'
}
},

{
files: ['**/*.ts', '**/*.tsx'],

rules: {
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'off'
}
}
);
223 changes: 0 additions & 223 deletions examples/test-widget-with-ipykernel.ipynb

This file was deleted.

2 changes: 0 additions & 2 deletions jupyter_bluetooth_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from .movehub import MoveHubWidget, LedColor,Port, Sensor

try:
from ._version import __version__
except ImportError:
Expand Down
12 changes: 0 additions & 12 deletions jupyter_bluetooth_manager/_frontend.py

This file was deleted.

Loading
Loading