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 .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
data = json.load(f)

data["version"] = datetime.now().strftime("%Y.%m.%d")
data["jupyter-releaser"] = { "options": { "version-cmd": "npm run update:versions -- --yes" } }
data["jupyter-releaser"] = { "options": { "version-cmd": "yarn update:versions -- --yes" } }

with open("package.json", "w") as f:
data = json.dump(data, f)
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"scripts": {
"api": "lerna run api",
"build": "npm run build:src",
"build:dist": "npm run build && npm run minimize",
"build": "yarn build:src",
"build:dist": "yarn build && yarn minimize",
"build:examples": "lerna run build --scope \"@lumino/example-*\" --concurrency 1",
"build:src": "lerna run build --scope \"@lumino/!(test-|example-)*\" --concurrency 1",
"build:test": "lerna run build:test",
Expand All @@ -29,7 +29,7 @@
"minimize": "lerna run minimize",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"publish": "npm run clean && npm run build:dist && node scripts/tag-versions.js && lerna publish --yes -m \"Publish\" from-package",
"publish": "yarn clean && yarn build:dist && node scripts/tag-versions.js && lerna publish --yes -m \"Publish\" from-package",
"remove:dependency": "remove-dependency",
"test": "lerna run test --concurrency 1 --no-bail --scope \"@lumino/!(example-)*\"",
"test:chromium": "lerna run test:chromium --no-bail --concurrency 1",
Expand Down
14 changes: 7 additions & 7 deletions packages/algorithm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"devDependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/application/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/collections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/coreutils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/datagrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/disposable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/domutils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"devDependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/dragdrop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/keyboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"devDependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/polling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"dependencies": {
Expand Down
14 changes: 7 additions & 7 deletions packages/properties/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run build:src && rollup -c",
"build": "yarn build:src && rollup -c",
"build:src": "tsc --build",
"build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
"build:test": "yarn clean:test && tsc --build tests && cd tests && rollup -c",
"clean": "rimraf ./lib *.tsbuildinfo ./types ./dist",
"clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"test": "npm run build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:debug": "npm run test -- --manual --open",
"test:chromium": "npm run test -- --browsers chromium",
"test:firefox": "npm run test -- --browsers firefox",
"test:webkit": "npm run test -- --browsers webkit",
"test": "yarn build:test && web-test-runner tests/lib/bundle.test.js --node-resolve --playwright",
"test:chromium": "yarn test -- --browsers chromium",
"test:debug": "yarn test -- --manual --open",
"test:firefox": "yarn test -- --browsers firefox",
"test:webkit": "yarn test -- --browsers webkit",
"watch": "tsc --build --watch"
},
"devDependencies": {
Expand Down
Loading
Loading