Skip to content

Commit

Permalink
Ship the minimum in npm package
Browse files Browse the repository at this point in the history
  • Loading branch information
Breck Yunits authored and Breck Yunits committed May 3, 2024
1 parent 9db5460 commit 04f37aa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jtree",
"version": "76.0.0",
"version": "76.1.0",
"description": "Simplify your code with Tree Notation. This jtree package includes a Tree Notation parser, compiler-compiler, and virtual machine for Tree Languages, as well as sample languages, implemented in TypeScript.",
"types": "./built/jtree.node.d.ts",
"main": "./products/TreeNode.js",
Expand All @@ -14,6 +14,9 @@
"arrowParens": "avoid",
"quoteProps": "as-needed"
},
"files": [
"products/"
],
"engineStrict": true,
"engines": {
"node": ">=16.0"
Expand Down
2 changes: 1 addition & 1 deletion products/TreeNode.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2555,7 +2555,7 @@ TreeNode.iris = `sepal_length,sepal_width,petal_length,petal_width,species
4.9,2.5,4.5,1.7,virginica
5.1,3.5,1.4,0.2,setosa
5,3.4,1.5,0.2,setosa`
TreeNode.getVersion = () => "76.0.0"
TreeNode.getVersion = () => "76.1.0"
class AbstractExtendibleTreeNode extends TreeNode {
_getFromExtended(firstWordPath) {
const hit = this._getNodeFromExtended(firstWordPath)
Expand Down
2 changes: 1 addition & 1 deletion products/TreeNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -2545,7 +2545,7 @@ TreeNode.iris = `sepal_length,sepal_width,petal_length,petal_width,species
4.9,2.5,4.5,1.7,virginica
5.1,3.5,1.4,0.2,setosa
5,3.4,1.5,0.2,setosa`
TreeNode.getVersion = () => "76.0.0"
TreeNode.getVersion = () => "76.1.0"
class AbstractExtendibleTreeNode extends TreeNode {
_getFromExtended(firstWordPath) {
const hit = this._getNodeFromExtended(firstWordPath)
Expand Down
3 changes: 3 additions & 0 deletions releaseNotes.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ startColumns 4

Here's a list of the notable changes in JTree.

# 76.1.0 2023-5-03
- 🎉 only ship bare minimum files in npm package

# 76.0.0 2023-5-03
- 🎉 all remaining dependencies moved to `devDependencies`

Expand Down
2 changes: 1 addition & 1 deletion treeNode/TreeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3043,7 +3043,7 @@ class TreeNode extends AbstractNode {
return str ? indent + str.replace(/\n/g, indent) : ""
}

static getVersion = () => "76.0.0"
static getVersion = () => "76.1.0"

static fromDisk(path: string): TreeNode {
const format = this._getFileFormat(path)
Expand Down

0 comments on commit 04f37aa

Please sign in to comment.