Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed Oct 27, 2017
1 parent 954a67f commit 18b3300
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 1 addition & 5 deletions clean-scripts.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
const childProcess = require('child_process')
const util = require('util')
const { Service } = require('clean-scripts')

const execAsync = util.promisify(childProcess.exec)
const { Service, execAsync } = require('clean-scripts')

const tsFiles = `"src/**/*.ts" "src/**/*.tsx" "spec/**/*.ts" "demo/**/*.ts" "demo/**/*.tsx" "screenshots/**/*.ts"`
const lessFiles = `"src/**/*.less"`
Expand Down
2 changes: 1 addition & 1 deletion demo/vue/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from "vue";
import Component from "vue-class-component";
// tslint:disable-next-line:no-duplicate-imports
// tslint:disable:no-duplicate-imports
import "../../dist/vue";
import { ContextMenuData, getNodeFromPath, EventData, DropData, TreeData } from "../../dist/vue";
import { data, clearSelectionOfTree, toggle, setSelectionOfTree, setParentsSelection, move, canMove, setContextMenu, Value } from "../common";
Expand Down
6 changes: 5 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
true,
"allow-new"
],
"no-submodule-imports": false
"no-submodule-imports": false,
"no-implicit-dependencies": [
true,
"dev"
]
}
}

0 comments on commit 18b3300

Please sign in to comment.