Skip to content

Commit c5abe63

Browse files
authored
Merge pull request #31 from oslabs-beta/acorn-ast-test
.npmignore added + linkFiber fix
2 parents cdec98e + 30a112b commit c5abe63

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

package/.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__tests__

package/linkFiber.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,11 @@ module.exports = (snap, mode) => {
145145
});
146146
// Testing sending back a function def to client
147147
// function getNextImport(filePath) {
148-
// return loadable(() => import(`${filePath}`))
149-
// Got relative file path to return back to client code
150-
// return (`myTestString${filePath}`);
151-
}
148+
// return loadable(() => import(`${filePath}`))
149+
// Got relative file path to return back to client code
150+
// return (`myTestString${filePath}`);
152151
// return getNextImport('./UseStateHook');
153152
// return 'Testing outside';
154-
};
155-
};
156-
// const OtherComponent = loadable(() => import('./OtherComponent'))
153+
// const OtherComponent = loadable(() => import('./OtherComponent'))
154+
}
155+
};

package/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactime",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "A library that helps debug React by memorizing the state of components with every render.",
55
"main": "index.js",
66
"repository": {
@@ -16,8 +16,10 @@
1616
},
1717
"keywords": [
1818
"react",
19-
"time",
20-
"time travel",
19+
"state",
20+
"useState",
21+
"setState",
22+
"debug",
2123
"reactime",
2224
"react devtool"
2325
],

0 commit comments

Comments
 (0)