oncoprintjs 6.1.1 → 6.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +13 -0
- package/README.md +2 -2
- package/dist/index.es.js +11006 -109
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +10917 -20
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
> oncoprintjs@6.1.3 build /home/runner/work/cbioportal-frontend/cbioportal-frontend/packages/oncoprintjs
|
|
3
|
+
> cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=2048 pnpm run rollup
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> oncoprintjs@6.1.3 rollup /home/runner/work/cbioportal-frontend/cbioportal-frontend/packages/oncoprintjs
|
|
7
|
+
> rollup -c rollup.config.ts
|
|
8
|
+
|
|
9
|
+
[36m
|
|
10
|
+
[1msrc/index.tsx[22m → [1mdist/index.js, dist/index.es.js[22m...[39m
|
|
11
|
+
[1m[33m(!) Circular dependency[39m[22m
|
|
12
|
+
src/js/oncoprinttrackoptionsview.ts -> src/js/oncoprintheaderview.ts -> src/js/oncoprinttrackoptionsview.ts
|
|
13
|
+
[32mcreated [1mdist/index.js, dist/index.es.js[22m in [1m20.6s[22m[39m
|
package/README.md
CHANGED
|
@@ -52,13 +52,13 @@ Whenever you have made a change to oncoprintjs you want to bring into another pa
|
|
|
52
52
|
|
|
53
53
|
yalc add oncoprintjs
|
|
54
54
|
|
|
55
|
-
(4) Install packages again, using
|
|
55
|
+
(4) Install packages again, using pnpm. Now, you will be using your local version of oncoprintjs.
|
|
56
56
|
|
|
57
57
|
(5) When you no longer want to be using the local version of oncoprintjs, simply run
|
|
58
58
|
|
|
59
59
|
yalc remove oncoprintjs
|
|
60
60
|
|
|
61
|
-
And run
|
|
61
|
+
And run pnpm again.
|
|
62
62
|
|
|
63
63
|
### Changes to Oncoprint
|
|
64
64
|
If you make changes to the Oncoprint code base and want to load it into the examples, do not modify `oncoprint.bundle.js`, since all of your code will get overwritten when compiled using `npm run build`. Instead, modify the files in `src/` and then re-run `npm run build`.
|