Skip to content

Commit

Permalink
Bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodelgado committed Dec 21, 2017
1 parent 0923ed6 commit 65d66c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Binary file modified dist/chrome.crx
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-branch-status",
"version": "0.1.0",
"name": "Github Branch Status",
"version": "0.1.1",
"description": "Chrome extension to show a branch status in the home repo",
"repository": {
"type": "git",
Expand Down
8 changes: 5 additions & 3 deletions utils/generate-manifest.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
const fileSystem = require('fs-extra');
const path = require('path');

const pjson = require('../package.json');
const manifest = require('../src/manifest.json');

// generates the manifest file using the package.json informations
manifest.description = process.env.npm_package_description;
manifest.version = process.env.npm_package_version;
// generates the manifest file using the package.json information
manifest.name = pjson.name;
manifest.description = pjson.description;
manifest.version = pjson.version;

fileSystem.writeFileSync(
path.join(__dirname, '../build/manifest.json'),
Expand Down

0 comments on commit 65d66c2

Please sign in to comment.