@lisba/data-structures-js
Advanced tools
Comparing version 0.2.4 to 0.2.5
{ | ||
"name": "@lisba/data-structures-js", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "Common data structures implementation in Javascript.", | ||
"main": "index.js", | ||
"type": "module", | ||
"main": "build/index.js", | ||
"author": "Lisbaldy Ojeda", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "babel src -d build", | ||
"start": "node build/index.js", | ||
"test": "jest --config jest.config.cjs", | ||
@@ -16,3 +17,8 @@ "lint": "eslint ./", | ||
"devDependencies": { | ||
"@babel/cli": "^7.17.10", | ||
"@babel/core": "^7.17.10", | ||
"@babel/node": "^7.17.10", | ||
"@babel/plugin-transform-modules-commonjs": "^7.17.9", | ||
"@babel/preset-env": "^7.17.10", | ||
"babel-plugin-module-resolver": "^4.1.0", | ||
"eslint": "^7.19.0", | ||
@@ -19,0 +25,0 @@ "husky": "^7.0.4", |
@@ -51,4 +51,5 @@ # @lisba/data-structures-js | ||
4. Develop suggested changes in a new branch (make sure you are using the prettier config, you can run `yarn format` or install the prettier extension if you are using vsc editor to format on save). | ||
5. Push your changes to your repo `git push remote-repo branch-name`. | ||
6. Make the pull request. | ||
5. Run `yarn build` and `yarn start` to verify your changes doesn't has errors. | ||
6. Push your changes to your repo `git push remote-repo branch-name`. | ||
7. Make the pull request. | ||
@@ -55,0 +56,0 @@ ## License |
@@ -1,7 +0,7 @@ | ||
export { default as MyArray } from './arrays/index.js'; | ||
export { default as HashTable } from './hashTables/index.js'; | ||
export * from './linkedLists/index.js'; | ||
export { default as Stack } from './stacks/index.js'; | ||
export { default as Queue } from './queues/index.js'; | ||
export { default as BinarySearchTree } from './trees/index.js'; | ||
export { default as UndirectedGraph } from './graphs/undirectedGraph.js'; | ||
export { default as MyArray } from '@arrays'; | ||
export { default as HashTable } from '@hashTables'; | ||
export * from '@linkedLists'; | ||
export { default as Stack } from '@stacks'; | ||
export { default as Queue } from '@queues'; | ||
export { default as BinarySearchTree } from '@trees'; | ||
export { default as UndirectedGraph } from '@graphs'; |
@@ -1,2 +0,2 @@ | ||
export { default as MySinglyLinkedList } from './singly.js'; | ||
export { default as MyDoublyLinkedList } from './doubly.js'; | ||
export { default as MySinglyLinkedList } from './singly'; | ||
export { default as MyDoublyLinkedList } from './doubly'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
77809
38
1109
58
10
No