Skip to content

Commit

Permalink
Publish less to npm
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 04f37aa commit d59d71a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jtree",
"version": "76.1.0",
"version": "76.2.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 @@ -15,7 +15,19 @@
"quoteProps": "as-needed"
},
"files": [
"products/"
"products/Disk.node.js",
"products/grammar.nodejs.js",
"products/GrammarCompiler.js",
"products/GrammarLanguage.js",
"products/hakon.nodejs.js",
"products/Path.js",
"products/stamp.nodejs.js",
"products/stump.nodejs.js",
"products/swarm.nodejs.js",
"products/TestRacer.js",
"products/TreeFileSystem.js",
"products/TreeNode.js",
"products/Utils.js"
],
"engineStrict": true,
"engines": {
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.1.0"
TreeNode.getVersion = () => "76.2.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.1.0"
TreeNode.getVersion = () => "76.2.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.2.0 2023-5-03
- 🎉 only ship bare minimum files in npm package

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

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.1.0"
static getVersion = () => "76.2.0"

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

0 comments on commit d59d71a

Please sign in to comment.