2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-12 00:22:24 +03:00

feat: add option to refresh once during navigation (possible fix for #320)

chore: add es build

chore: global window detection

chore: small refactor improvements
This commit is contained in:
pimlie
2019-02-20 18:35:01 +01:00
parent 087e4abe76
commit 8e211751df
12 changed files with 145 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -e
# Cleanup
rm -rf lib es
echo 'Compile JS...'
rollup -c scripts/rollup.config.js
echo 'Done.'
echo ''
echo 'Build ES modules...'
NODE_ENV=es babel src --out-dir es --ignore 'src/browser.js'
echo 'Done.'
echo ''
echo 'Done building assets.'