Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b13a5d1

Browse files
committed
initial commit v 0.4.0
1 parent 24a1e06 commit b13a5d1

File tree

11 files changed

+9
-2947
lines changed

11 files changed

+9
-2947
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
typings

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ Scripts:
1818

1919
`npm run clean` - will delete the dist folder
2020

21+
Setup: run `npm install`
22+
2123
Clone it and get started!
2224

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"name": "vue-typescript-ts-sample",
2+
"name": "vue-typescript-seed",
33
"version": "1.0.0",
4-
"description": "A sample app using vue-typescript",
4+
"description": "A starter project for vue typescript using webpack and bootstrap",
55
"main": "index.js",
66
"scripts": {
77
"dev": "webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
88
"clean": "rm -rf dist",
9-
"build": "webpack"
9+
"build": "webpack",
10+
"postinstall": "typings install"
1011
},
1112
"author": "Francis O'Brien",
1213
"license": "MIT",

typings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vue-typescript-ts-sample",
2+
"name": "vue-typescript-seed",
33
"dependencies": {},
44
"globalDependencies": {
55
"node": "registry:dt/node#6.0.0+20160709114037",

0 commit comments

Comments
 (0)