Skip to content

Commit

Permalink
fix: rollup paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlie committed Feb 10, 2019
1 parent 78f2c46 commit bfbd181
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import json from 'rollup-plugin-json'
import buble from 'rollup-plugin-buble'
import { terser } from 'rollup-plugin-terser'

const pkg = require('./package.json')
const pkg = require('../package.json')

const banner = `/**
* vue-meta v${pkg.version}
Expand All @@ -14,7 +14,7 @@ const banner = `/**
`.replace(/ {4}/gm, '').trim()

const baseConfig = {
input: './src/index.js',
input: 'src/index.js',
output: {
file: pkg.web,
format: 'umd',
Expand Down

0 comments on commit bfbd181

Please sign in to comment.