Skip to content

Commit

Permalink
Fixed line 107 of package.js (#3)
Browse files Browse the repository at this point in the history
* Fixed line 107 of package.js

Changed claims.js to notifications.js in scripts/package.js

* Added both claims and notifications to package.js and .sh

Co-authored-by: Nathan Woodburn <contact@nathan.woodburn.id.au>
  • Loading branch information
2 people authored and rithvikvibhu committed Jan 25, 2023
1 parent 54fea93 commit 8bc96b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ function main() {
'ducks/nodeReducer.js',
'ducks/hip2Reducer.js',
'ducks/walletReducer.js',
'ducks/claims.js'
'ducks/claims.js',
'ducks/notifications.js'
];
const babelizeFiles = () => {
if (!babelFiles.length) {
Expand Down
1 change: 1 addition & 0 deletions scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ $DIR/node_modules/.bin/babel $DIR/app/ducks/walletReducer.js -o ./dist/ducks/wal
$DIR/node_modules/.bin/babel $DIR/app/ducks/nodeReducer.js -o ./dist/ducks/nodeReducer.js
$DIR/node_modules/.bin/babel $DIR/app/ducks/hip2Reducer.js -o ./dist/ducks/hip2Reducer.js
$DIR/node_modules/.bin/babel $DIR/app/ducks/claims.js -o ./dist/ducks/claims.js
$DIR/node_modules/.bin/babel $DIR/app/ducks/notifications.js -o ./dist/ducks/notifications.js

0 comments on commit 8bc96b1

Please sign in to comment.