interpolate-es
Advanced tools
Comparing version 1.0.8 to 1.0.9
{ | ||
"name": "interpolate-es", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Dynamically build tagged templates", | ||
@@ -26,5 +26,9 @@ "keywords": [ | ||
"types": "npx tsc -p .config/jsconfig.json", | ||
"build": "npm run build:cjs && npm run && npm run build:typings", | ||
"build": "npm run build:cjs && npm run build:min && npm run && npm run build:typings", | ||
"build:cjs": "npx rollup --config .config/cjs.config.js", | ||
"build:min": "npx rollup --config .config/min.config.js", | ||
"build:typings": "npx tsc -p .config/tsconfig.json", | ||
"clean": "npm run clean:builds && npm run clean:typings", | ||
"clean:builds": "npx rimraf index.cjs && npx rimraf index.min.js", | ||
"clean:typings": "npx rimraf src/*.d.ts", | ||
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf", | ||
@@ -37,2 +41,3 @@ "preversion": "npm test && npm run lint && npm run types", | ||
"devDependencies": { | ||
"rollup-plugin-terser": "^5.2.0", | ||
"semistandard": "^14.2.0", | ||
@@ -39,0 +44,0 @@ "tape-es": "^1.1.1" |
@@ -41,3 +41,3 @@ [![GitHub Releases](https://img.shields.io/github/release/vanillaes/interpolate-es.svg)](https://github.com/vanillaes/interpolate-es/releases) | ||
```javascript | ||
const Interpolate = require('interpolate-es/dist/interpolate-es.cjs'); | ||
const Interpolate = require('interpolate-es/index.cjs'); | ||
``` | ||
@@ -44,0 +44,0 @@ |
5611
3
9
39