Skip to content

Commit

Permalink
Merge pull request #19 from jupyter-robotics/updateLinks
Browse files Browse the repository at this point in the history
Update repository links for new organisation
  • Loading branch information
DenisaCG authored Aug 21, 2024
2 parents e408671 + b09015a commit f2a5314
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
Empty file removed examples/untitled.jpblockly
Empty file.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"Niryo",
"Niryo-One"
],
"homepage": "https://github.com/QuantStack/jupyterlab-niryo-one",
"homepage": "https://github.com/jupyter-robotics/jupyterlab-niryo-one",
"bugs": {
"url": "https://github.com/QuantStack/jupyterlab-niryo-one/issues"
"url": "https://github.com/jupyter-robotics/jupyterlab-niryo-one/issues"
},
"license": "BSD-3-Clause",
"author": {
Expand All @@ -28,7 +28,7 @@
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/jupyterlab-niryo-one.git"
"url": "https://github.com/jupyter-robotics/jupyterlab-niryo-one.git"
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"jupyterlab-blockly>=0.3.2,<0.4"
"jupyterlab-blockly>=0.3.2,<0.4",
"pyniryo>=1.1.2,<2"
]
dynamic = ["version", "description", "authors", "urls", "keywords"]

Expand Down
29 changes: 14 additions & 15 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
// @ts-check

module.exports = /** @type { import('webpack').Configuration } */ ({
devtool: 'source-map',
module: {
rules: [
// Load Blockly source maps.
{
test: /(blockly\/.*\.js)$/,
use: [require.resolve('source-map-loader')],
enforce: 'pre'
}
].filter(Boolean)
},
// https://github.com/google/blockly-samples/blob/9974e85becaa8ad17e35b588b95391c85865dafd/plugins/dev-scripts/config/webpack.config.js#L118-L120
ignoreWarnings: [/Failed to parse source map/]
});

devtool: 'source-map',
module: {
rules: [
// Load Blockly source maps.
{
test: /(blockly\/.*\.js)$/,
use: [require.resolve('source-map-loader')],
enforce: 'pre'
}
].filter(Boolean)
},
// https://github.com/google/blockly-samples/blob/9974e85becaa8ad17e35b588b95391c85865dafd/plugins/dev-scripts/config/webpack.config.js#L118-L120
ignoreWarnings: [/Failed to parse source map/]
});

0 comments on commit f2a5314

Please sign in to comment.