Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
borota committed Oct 9, 2017
1 parent ab5895d commit 890b280
Show file tree
Hide file tree
Showing 7 changed files with 129 additions and 145 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,3 +3,4 @@ build
node_modules
coverage
.vscode
package-lock.json
216 changes: 108 additions & 108 deletions README.md

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions babelrc.json

This file was deleted.

4 changes: 2 additions & 2 deletions doc/readme.hbs
Expand Up @@ -25,7 +25,7 @@ Following bundles are available:
libraries and applications

The package could also be downloaded directly from:
[https://registry.npmjs.org/hebrew-code-util/-/hebrew-code-util-1.0.0.tgz](https://registry.npmjs.org/hebrew-code-util/-/hebrew-code-util-1.0.0.tgz)
[https://registry.npmjs.org/hebrew-code-util/-/hebrew-code-util-1.0.1.tgz](https://registry.npmjs.org/hebrew-code-util/-/hebrew-code-util-1.0.1.tgz)

## More information

Expand Down Expand Up @@ -59,7 +59,7 @@ npm run build
```

## API Reference
{{#module name="hebrew"}}
{{#module name="hebrewCodeUtil"}}
{{>body~}}
{{>member-index~}}
{{>separator~}}
Expand Down
25 changes: 11 additions & 14 deletions package.json
@@ -1,21 +1,22 @@
{
"name": "hebrew-code-util",
"version": "1.0.0",
"version": "1.0.1",
"description": "Hebrew unicode utilities",
"main": "build/hebrew-code-util.js",
"main݂Min": "build/hebrew-code-util.min.js",
"mainMin": "build/hebrew-code-util.min.js",
"module": "build/hebrew-code-util.esm.js",
"scripts": {
"pretest": "rollup -c",
"test": "mocha --reporter test/istanbul.reporter.js --recursive",
"prebuild": "npm run doc && npm test && npm run lint",
"prebuild": "npm test && npm run lint",
"build": "npm run bundle",
"postbuild": "npm run doc",
"bundle": "rollup -c --environment BUILD:production",
"build:dev": "rollup -c --environment BUILD:dev",
"lint": "eslint src test",
"doc": "jsdoc2md -t doc/readme.hbs src/*.js > README.md",
"coverage": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"prepublish": "npm run build"
"prepare": "npm run build"
},
"eslintConfig": {
"extends": "airbnb-base",
Expand Down Expand Up @@ -43,9 +44,9 @@
"Peshitto",
"Pshitta",
"Pshitto",
"Sedra",
"Sedra.js",
"Sedrajs",
"Sedra",
"Aramaic",
"Syriac",
"CAL",
Expand All @@ -60,19 +61,15 @@
"homepage": "https://github.com/peshitta/hebrew-code-util#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^7.0.0-beta.1",
"babel-plugin-external-helpers": "^7.0.0-beta.1",
"babel-preset-env": "^2.0.0-beta.1",
"babelrc-rollup": "^3.0.0",
"coveralls": "^2.13.1",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.5.3",
"mocha": "^4.0.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-uglify": "^2.0.1"
}
Expand Down
13 changes: 6 additions & 7 deletions rollup.config.js
@@ -1,5 +1,4 @@
import babel from 'rollup-plugin-babel';
import babelrc from 'babelrc-rollup';
import buble from 'rollup-plugin-buble';
import istanbul from 'rollup-plugin-istanbul';
import uglify from 'rollup-plugin-uglify';
import pkg from './package.json';
Expand All @@ -9,7 +8,7 @@ const isDev = process.env.BUILD === 'dev';
const banner = isProduction
? '/**\n' +
'* @file Hebrew unicode utilities\n' +
'* @version 1.0.0\n' +
'* @version 1.0.1\n' +
'* @author Greg Borota\n' +
'* @copyright (c) 2017 Greg Borota.\n' +
'* @license MIT\n' +
Expand Down Expand Up @@ -43,9 +42,9 @@ const name = 'hebrewCodeUtil';
const format = 'umd';
const globals = {};
const sourcemap = !isProduction;
const plugins = [babel(babelrc({ path: 'babelrc.json' }))];
const plugins = [buble()];

// browser-friendly UMD build
// browser/nodejs-friendly UMD build
const targets = [
{
input,
Expand Down Expand Up @@ -80,10 +79,10 @@ if (isProduction) {
})
);

// browser-friendly minified UMD build
// browser/nodejs-friendly minified UMD build
targets.push({
input,
output: [{ file: pkg.main݂Min, format }],
output: [{ file: pkg.mainMin, format }],
external,
plugins,
name,
Expand Down
3 changes: 1 addition & 2 deletions src/main.js
@@ -1,5 +1,4 @@
/** @module hebrew */

/** @module hebrewCodeUtil */
/**
* Hebrew base 22 consonants
* @constant
Expand Down

0 comments on commit 890b280

Please sign in to comment.