Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tnolet committed Sep 21, 2018
1 parent 5c3b354 commit a37acc5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "puppeteer-recorder",
"version": "0.3.0",
"version": "0.4.0",
"description": "A Chrome extension for recording browser interaction and generating Puppeteer scripts",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
@@ -1,6 +1,6 @@
{
"name": "Puppeteer Recorder",
"version": "0.3.0",
"version": "0.4.0",
"manifest_version": 2,
"description": "A Chrome extension for recording browser interaction and generating Puppeteer scripts",
"permissions": [
Expand Down
Expand Up @@ -17,7 +17,7 @@ exports[`App.vue it has the correct pristine / empty state 1`] = `
class="text-muted"
>
<small>
0.3.0
0.4.0
</small>
</span>
</a>
Expand Down
Expand Up @@ -7,14 +7,18 @@ exports[`RecordingTab.vue it has the correct pristine / empty state 1`] = `
<div
class="content"
>
<pre>
<code>
No code yet...
</code>
<div
class="generated-code"
>
<pre>
<code>
No code yet...
</code>
</pre>
</pre>
</div>
</div>
</div>
`;
Expand All @@ -26,11 +30,15 @@ exports[`RecordingTab.vue it show a code box when there is code 1`] = `
<div
class="content"
>
<pre>
<code
class="javascript"
/>
</pre>
<div
class="generated-code"
>
<pre>
<code
class="javascript"
/>
</pre>
</div>
</div>
</div>
`;

0 comments on commit a37acc5

Please sign in to comment.