[
https://issues.apache.org/jira/browse/BEAM-7923?focusedWorklogId=448615&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-448615
]
ASF GitHub Bot logged work on BEAM-7923:
----------------------------------------
Author: ASF GitHub Bot
Created on: 19/Jun/20 17:41
Start Date: 19/Jun/20 17:41
Worklog Time Spent: 10m
Work Description: KevinGG commented on a change in pull request #11884:
URL: https://github.com/apache/beam/pull/11884#discussion_r442968583
##########
File path:
sdks/python/apache_beam/runners/interactive/extensions/interactive_beam_side_panel/package.json
##########
@@ -0,0 +1,75 @@
+{
+ "name": "interactive-beam-side-panel",
+ "version": "0.1.0",
+ "description": "A side panel providing information of current interactive
environment, data sets associated with PCollections, pipeline state, job status
and source capture.",
+ "keywords": [
+ "jupyter",
+ "jupyterlab",
+ "jupyterlab-extension"
+ ],
+ "homepage": "https://github.com/apache/beam",
+ "bugs": {
+ "url": "https://github.com/apache/beam/issues"
+ },
+ "license": "BSD-3-Clause",
+ "author": "ningk",
+ "files": [
+ "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
+ "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
+ ],
+ "main": "lib/index.js",
+ "types": "lib/index.d.ts",
+ "style": "style/index.css",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/apache/beam.git"
+ },
+ "scripts": {
+ "build": "jlpm run build:lib",
+ "build:labextension": "cd interactive_beam_side_panel && rimraf
labextension && mkdirp labextension && cd labextension && npm pack ../..",
+ "build:lib": "tsc",
+ "build:all": "jlpm run build:labextension",
+ "clean": "jlpm run clean:lib",
+ "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
+ "clean:labextension": "rimraf interactive_beam_side_panel/labextension",
+ "clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
+
+ "eslint": "eslint . --ext .ts,.tsx --fix",
+ "eslint:check": "eslint . --ext .ts,.tsx",
+ "prepare": "jlpm run clean && jlpm run build",
+ "watch": "tsc -w"
+ },
+ "dependencies": {
Review comment:
npm uses [semantic
versioning](https://docs.npmjs.com/about-semantic-versioning),
```
npm uses the tilde (~) and caret (^) to designate which patch and minor
versions to use respectively.
So if you see ~1.0.2 it means to install version 1.0.2 or the latest patch
version such as 1.0.4. If you see ^1.0.2 it means to install version 1.0.2 or
the latest minor or patch version such as 1.1.0.
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 448615)
Time Spent: 25h 50m (was: 25h 40m)
> Interactive Beam
> ----------------
>
> Key: BEAM-7923
> URL: https://issues.apache.org/jira/browse/BEAM-7923
> Project: Beam
> Issue Type: New Feature
> Components: runner-py-interactive
> Reporter: Ning Kang
> Priority: P2
> Time Spent: 25h 50m
> Remaining Estimate: 0h
>
> This is the top level ticket for all efforts leveraging [interactive
> Beam|[https://github.com/apache/beam/tree/master/sdks/python/apache_beam/runners/interactive]]
> As the development goes, blocking tickets will be added to this one.
>
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)