@kylincloud/flamegraph 0.35.15 → 0.35.18
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/CHANGELOG.md +21 -0
- package/dist/index.cjs.js +4 -4
- package/dist/index.esm.js +4 -4
- package/package.json +4 -4
- package/src/sass/_sanitize.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kylincloud/flamegraph",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.18",
|
|
4
4
|
"description": "KylinCloud flamegraph renderer (Pyroscope-based)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/index.node.cjs.js",
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"clean": "rm -rf dist",
|
|
31
|
-
"build": "
|
|
31
|
+
"build": "npm run clean && npm run build:types && npm run build:js && npm run build:assets",
|
|
32
32
|
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
33
33
|
"build:js": "rollup -c",
|
|
34
34
|
"build:assets": "cp src/logo-v3-small.svg dist/logo-v3-small.svg || true",
|
|
35
35
|
"type-check": "tsc -p tsconfig.build.json --noEmit",
|
|
36
36
|
"dev:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --watch",
|
|
37
37
|
"dev:js": "rollup -c -w",
|
|
38
|
-
"dev": "
|
|
38
|
+
"dev": "npm run dev:js",
|
|
39
39
|
"lint": "eslint ./ --cache --fix",
|
|
40
40
|
"release": "bash -c 'source .env && export GITLAB_TOKEN=\"glpat-$RELEASE_TOKEN\" && release-it'",
|
|
41
|
-
"publish": "npm
|
|
41
|
+
"publish:manual": "npm publish --access public --registry=https://registry.npmjs.org/"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"graphviz-react": "^1.2.5",
|
package/src/sass/_sanitize.scss
CHANGED