1.0.4 • Published 6 years ago

settings-manager-chrome-extension v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

settings-manager-chrome-extension

A wrapper to adapt Chrome storage sync API (for extensions) around settings-manager.

Build Status NPM version Dependency Status

Introduction

A wrapper to make the Chrome storage sync API (for extensions) compilant with the settings-manager API.

Setup

npm install -g grunt
npm install

Building

A build will generate usable artifacts in the dist/. Invoke a build like so:

npm run dist

Running Tests

To run tests against the source code while watching for file changes:

npm run test:watch

To run tests against the distributable code:

npm run test:all

To run coverage reports:

npm run coverage

API:

new ChromeExtensionSettingsManager()

Creates a new ChromeExtensionSettingsManager instance. The instance will find chrome in the global namespace

load(success)

Loads the settings. Takes a success callback and an error callback. The value passed into the settings callback represents the value from the backing store.

save(settings, success)

Saves the settings. Requires the settings to save and takes an optional callback for the success or error status.

clear(success])

Clears the settings. Takes an optional callback for the success or error status.

Deploying

This is a basic script which can be used to build and deploy (to NPM) the project.

export VERSION=0.0.16
git checkout -b release/$VERSION
npm run dist
npm version --no-git-tag-version patch
git add package*
git commit -m 'Version bump'
npx auto-changelog -p
git add CHANGELOG.md
git commit -m 'Updated changelog'
git add dist/
git commit -m 'Generated artifacts'
git checkout master
git merge --no-ff release/$VERSION
git tag -a -m 'Tagged for release' $VERSION
git branch -d release/$VERSION
git checkout develop
git merge --no-ff master
git push --all && git push --tags