From 8311e09a698c91b0ecb6c7b9cfef669e436ce3f3 Mon Sep 17 00:00:00 2001 From: Cody Baker Date: Wed, 18 Jul 2018 10:25:41 -0700 Subject: [PATCH] =?UTF-8?q?Spin=20off=20pacnav=20support=20into=20it?= =?UTF-8?q?=E2=80=99s=20own=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- babel.config.js | 9 ++++----- package.json | 4 ++-- webpack.config.js | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/babel.config.js b/babel.config.js index 67ecbfe..77a4c7a 100644 --- a/babel.config.js +++ b/babel.config.js @@ -8,9 +8,8 @@ module.exports = { } }] ], - "plugins": [ - [ - "transform-class-properties", - { "spec": true }] - ] + "plugins": [[ + "transform-class-properties", + { "spec": true } + ]] } diff --git a/package.json b/package.json index 54943a2..df85df9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@flickerbox/build", - "version": "1.0.0", + "version": "1.0.1", "description": "Better builds, building better websites", "main": "index.js", "bin": { @@ -31,8 +31,8 @@ }, "dependencies": { "@flickerbox/fabric": "3.0.5", + "@flickerbox/pacnav": "2.0.0", "@flickerbox/tracker": "1.0.2", - "@flickerbox/twill": "2.0.2", "autoprefixer": "^8.6.0", "babel-core": "^6.26.3", "babel-loader": "^7.1.5", diff --git a/webpack.config.js b/webpack.config.js index 449801d..82a6062 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -48,7 +48,7 @@ module.exports = ( env = 'development' ) => { alias: { 'vue$': 'vue/dist/vue.esm.js', 'fabric': require('@flickerbox/fabric/webpack.manifest').sassDir, - 'twill': require('@flickerbox/twill/webpack.manifest').sassDir, + 'pacnav': require('@flickerbox/pacnav/webpack.manifest').sassDir, }, extensions: ['*', '.js', '.vue', '.json'], },