Code Monkey home page Code Monkey logo

ety-js's Introduction

UNDER DEVELOPMENT - NOT YET USABLE


ety-js

Node module to find the etymological origins of a word (based on jmsv/ety-python)

JavaScript Style Guide Build Status Greenkeeper badge install size

At the moment this repo is just for getting a node module up and running. This will use:

  • Node - JS engine
  • Rollup - bundler
  • Babel - translation to more compatible JS from ES6+
  • Yarn - dependency management / scripts
  • StandardJS - code style
  • Mocha - unit tests

Development

To install dev dependencies:

yarn install --dev

Yarn/npm scripts listed in package.json include: lint to run standard style checks, test to run unit tests, build to build to the dist directory, and dev to build and watch for file changes

ety-js's People

Contributors

greenkeeper[bot] avatar jmsv avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

ety-js's Issues

An in-range update of rollup is breaking the build 🚨

The devDependency rollup was updated from 1.29.1 to 1.30.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for v1.30.0

2020-01-27

Features

  • Do not split chunks when dynamically imported modules import modules that are already loaded by all dynamic importers (#3354)
  • Add hoistTransitiveImports option to disable hoisting imports of static dependencies into entry chunks (#3353)

Bug Fixes

  • Make sure polyfills are always loaded first when each static entry point contains them as first import (#3354)

Pull Requests

Commits

The new version differs by 4 commits.

  • 91aa1a7 1.30.0
  • 372fe0d Update changelog
  • 075933a Add option to avoid hoisting transitive imports (#3353)
  • 7fc24ab Improve chunking algorithm for dynamic imports (#3354)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Node.js 6 support broken

See https://travis-ci.org/jmsv/ety-js/builds/401342646

TypeError: Object.entries is not a function

Error regarding: MDN Object.entries()

This was introduced in Node 7. The MDN link provides the following polyfill:

if (!Object.entries)
  Object.entries = function( obj ){
    var ownProps = Object.keys( obj ),
        i = ownProps.length,
        resArray = new Array(i); // preallocate the Array
    while (i--)
      resArray[i] = [ownProps[i], obj[ownProps[i]]];
    
    return resArray;
  };

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.