Skip to content

kolotaev/livescript-jest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

livescript-jest

Simple LiveScript Preprocessor for Jest

npm version Build Status


Installation:

Install with npm or yarn:

npm i livescript-jest

# or

yarn add livescript-jest

Usage:

In your package.json or jest.config.json specify ".ls" files preprocessor:

  "jest": {
    "transform": {
      "^.+\\.ls$": "livescript-jest",
    },
    "moduleFileExtensions": [
      "ls",
    ]
  }