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
19 changes: 2 additions & 17 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- candidate-*

pull_request:
branches:
branches:
- trunk
- candidate-*

Expand All @@ -21,7 +21,7 @@ jobs:
steps:
- name: Initialize Release Please
id: release
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' }}
uses: googleapis/release-please-action@v4
with:
target-branch: ${{ github.ref_name }}
Expand All @@ -41,11 +41,6 @@ jobs:
registry-url: "https://registry.npmjs.org"
scope: "@hpcc-js"

- name: Install OS Dependencies
if: ${{ github.event_name == 'pull_request' || steps.release.outputs.release_created }}
run: |
pip install pandas scikit-learn

- name: Export GitHub Actions cache environment variables
if: ${{ github.event_name == 'pull_request' || steps.release.outputs.release_created }}
uses: actions/github-script@v7
Expand All @@ -67,7 +62,6 @@ jobs:
- name: Build
if: ${{ github.event_name == 'pull_request' || steps.release.outputs.release_created }}
run: |
npm run stamp-all
npm run build
npm run minimize
npm run gen-legacy-types
Expand Down Expand Up @@ -109,15 +103,6 @@ jobs:
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}

- name: push stamped release
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email 4104672+github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/yargs/yargs.git"
git commit -a -m 'chore: stamp files for release'
git push origin

- name: Publish
if: ${{ steps.release.outputs.release_created }}
env:
Expand Down
25 changes: 21 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hpcc-js",
"version": "2.108.6",
"version": "2.108.7",
"description": "HPCC Visualization Framework",
"private": true,
"jsdelivr": "dist/index.umd.min.js",
Expand Down Expand Up @@ -57,9 +57,6 @@
"uninstall": "lerna clean && rimraf --glob packages/**/node_modules demos/**/node_modules apps/**/node_modules package-lock.json node_modules",
"clean-root": "rimraf --glob build coverage dist lib* types temp tmp *.tsbuildinfo .vitepress/dist .vitepress/cache docs/api",
"clean": "lerna run clean && npm run clean-root",
"stamp": "lerna run stamp",
"stamp-main": "node ./utils/bundle/src/stamp-main.js",
"stamp-all": "run-s stamp stamp-main",
"compile-es6": "lerna run --ignore \"@hpcc-js/test-*\" compile-es6",
"compile-es6-watch": "lerna run --no-sort --stream --ignore \"@hpcc-js/test-*\" compile-es6-watch",
"compile-umd": "lerna run --ignore \"@hpcc-js/test-*\" compile-umd",
Expand Down
3 changes: 1 addition & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand All @@ -59,4 +58,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
3 changes: 2 additions & 1 deletion packages/api/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/no-var-requires */

import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";
import alias from "@rollup/plugin-alias";
import commonjs from "@rollup/plugin-commonjs";
import sourcemaps from "rollup-plugin-sourcemaps";
Expand All @@ -26,6 +26,7 @@ export default {
name: pkg.name
}],
plugins: [
packageVersionPlugin(),
alias({
entries: [
{ find: "d3-array", replacement: "@hpcc-js/common" },
Expand Down
6 changes: 3 additions & 3 deletions packages/api/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/api";
export const PKG_VERSION = "2.14.2";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
3 changes: 1 addition & 2 deletions packages/chart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand Down Expand Up @@ -79,4 +78,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
4 changes: 3 additions & 1 deletion packages/chart/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from "@rollup/plugin-alias";
import commonjs from "@rollup/plugin-commonjs";
import sourcemaps from "rollup-plugin-sourcemaps";
Expand All @@ -24,6 +25,7 @@ export default {
name: pkg.name
}],
plugins: [
packageVersionPlugin(),
alias({
entries: [
{ find: "d3-array", replacement: "@hpcc-js/common" },
Expand Down
6 changes: 3 additions & 3 deletions packages/chart/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/chart";
export const PKG_VERSION = "2.86.2";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
3 changes: 1 addition & 2 deletions packages/codemirror-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand All @@ -49,4 +48,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
4 changes: 3 additions & 1 deletion packages/codemirror-shim/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from "@rollup/plugin-alias";
import commonjs from "@rollup/plugin-commonjs";
import sourcemaps from "rollup-plugin-sourcemaps";
Expand All @@ -23,6 +24,7 @@ export default {
globals: globals
}],
plugins: [
packageVersionPlugin(),
alias({}),
nodeResolve({
preferBuiltins: true
Expand Down
6 changes: 3 additions & 3 deletions packages/codemirror-shim/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/codemirror-shim";
export const PKG_VERSION = "2.38.0";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
3 changes: 1 addition & 2 deletions packages/codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand All @@ -56,4 +55,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
4 changes: 3 additions & 1 deletion packages/codemirror/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from '@rollup/plugin-alias';
import commonjs from '@rollup/plugin-commonjs';
import sourcemaps from 'rollup-plugin-sourcemaps';
Expand All @@ -24,6 +25,7 @@ export default {
name: pkg.name
}],
plugins: [
packageVersionPlugin(),
alias({
entries: [
{ find: "d3-array", replacement: "@hpcc-js/common" },
Expand Down
6 changes: 3 additions & 3 deletions packages/codemirror/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/codemirror";
export const PKG_VERSION = "2.66.1";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
1 change: 0 additions & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run copy-resources && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand Down
4 changes: 3 additions & 1 deletion packages/common/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from "@rollup/plugin-alias";
import commonjs from "@rollup/plugin-commonjs";
import sourcemaps from "rollup-plugin-sourcemaps";
Expand All @@ -25,6 +26,7 @@ export default {
name: pkg.name
}],
plugins: [
packageVersionPlugin(),
alias({}),
nodeResolve({
preferBuiltins: true
Expand Down
6 changes: 3 additions & 3 deletions packages/common/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/common";
export const PKG_VERSION = "2.73.2";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
1 change: 0 additions & 1 deletion packages/comms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "mocha lib-umd/__tests__ --reporter spec",
Expand Down
4 changes: 3 additions & 1 deletion packages/comms/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from '@rollup/plugin-alias';
import commonjs from '@rollup/plugin-commonjs';
import sourcemaps from 'rollup-plugin-sourcemaps';
Expand All @@ -8,6 +9,7 @@ import postcss from "rollup-plugin-postcss";
import pkg from "./package.json" with { type: "json" };

const plugins = [
packageVersionPlugin(),
alias({}),
nodeResolve({
preferBuiltins: true
Expand Down
6 changes: 3 additions & 3 deletions packages/comms/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/comms";
export const PKG_VERSION = "2.102.1";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
3 changes: 1 addition & 2 deletions packages/composite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
Expand Down Expand Up @@ -67,4 +66,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
4 changes: 3 additions & 1 deletion packages/composite/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { external, globals } from "@hpcc-js/bundle";
import { external, globals, packageVersionPlugin } from "@hpcc-js/bundle";

import alias from '@rollup/plugin-alias';
import commonjs from '@rollup/plugin-commonjs';
import sourcemaps from 'rollup-plugin-sourcemaps';
Expand All @@ -24,6 +25,7 @@ export default {
name: pkg.name
}],
plugins: [
packageVersionPlugin(),
alias({
entries: [
{ find: "d3-array", replacement: "@hpcc-js/common" },
Expand Down
6 changes: 3 additions & 3 deletions packages/composite/src/__package__.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const PKG_NAME = "@hpcc-js/composite";
export const PKG_VERSION = "2.9.4";
export const BUILD_VERSION = "2.108.6";
export const PKG_NAME = "__PACKAGE_NAME__";
export const PKG_VERSION = "__PACKAGE_VERSION__";
export const BUILD_VERSION = "__BUILD_VERSION__";
3 changes: 1 addition & 2 deletions packages/dataflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm-run-all -p compile-es6 compile-umd -s bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "mocha dist-test/index.js --reporter spec",
Expand All @@ -59,4 +58,4 @@
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}
}
Loading
Loading