Skip to content

Commit

Permalink
Version 76. Move all dependencies to dev dependencies.
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 1f1dc6a commit 9db5460
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jtree",
"version": "75.2.0",
"version": "76.0.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 Down Expand Up @@ -32,17 +32,15 @@
"url": "git://github.com/breck7/jtree"
},
"keywords": "jtree",
"dependencies": {
"express": "^4.18.2",
"glob": "^9.3.4",
"prettier": "^2.8.7",
"superagent": "^8.0.9"
},
"devDependencies": {
"@types/codemirror": "^5.60.7",
"@types/glob": "^8.1.0",
"@types/node": "^18.15.11",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
"typescript": "^5.0.3",
"express": "^4.18.2",
"glob": "^9.3.4",
"prettier": "^2.8.7",
"superagent": "^8.0.9"
}
}
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 = () => "75.2.0"
TreeNode.getVersion = () => "76.0.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 = () => "75.2.0"
TreeNode.getVersion = () => "76.0.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.0.0 2023-5-03
- 🎉 all remaining dependencies moved to `devDependencies`

# 75.2.0 2023-5-03
- 🎉 fewer dependencies

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 = () => "75.2.0"
static getVersion = () => "76.0.0"

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

0 comments on commit 9db5460

Please sign in to comment.