Skip to content

Commit 1ba0ee1

Browse files
committed
Include mixins in package
1 parent 52d4daa commit 1ba0ee1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ build_script:
1919

2020
after_build:
2121
# Copy anything that goes into the final package into '/package'
22-
- sh: mkdir -p package && cp dist/*.js dist/*.css index.js src/components/*.vue package.json LICENSE README.md package
22+
- sh: mkdir -p package && cp dist/*.js dist/*.css index.js package.json LICENSE README.md package
23+
- sh: mkdir -p package/components && cp src/components/*.vue package/components
24+
- sh: mkdir -p package/mixins && cp src/mixins/*.js package/mixins
2325
# Zip up the package files, along with the .map files for debugging
2426
- sh: 7z a -tzip artifacts.zip ./package/* ./dist/*.map
2527

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// This way users of the package can make sure it is
33
// transpiled to match their requirements, and don't need
44
// to separately include js and css files.
5-
import TreeView from './TreeView.vue';
5+
import TreeView from './components/TreeView.vue';
66
export default TreeView;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Yet another Vue treeview component.",
44
"author": "Gregg Rapoza <grapoza@gmail.com>",
55
"license": "MIT",
6-
"version": "1.2.0",
6+
"version": "1.2.1",
77
"browser": "index.js",
88
"repository": {
99
"url": "https://github.com/grapoza/vue-tree",

0 commit comments

Comments
 (0)