initial work
Showing
.eslintrc.js
0 → 100644
LICENSE
0 → 100644
lib/assemble.js
deleted
100644 → 0
lib/pitch.js
0 → 100644
lib/plugin.js
0 → 100644
lib/selector.js
0 → 100644
File moved
{ | ||
"name": "vue-loader-next", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"name": "vue-loader", | ||
"version": "15.0.0", | ||
"description": "Vue single-file component loader for Webpack", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"build": "webpack --config test/webpack.config.js" | ||
"test": "jest --env node", | ||
"lint": "eslint lib test --fix", | ||
"build": "webpack --config exploration/webpack.config.js" | ||
}, | ||
"author": "Evan You", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vue-loader/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vue-loader", | ||
"gitHooks": { | ||
"pre-commit": "lint-staged" | ||
}, | ||
"lint-staged": { | ||
"lib/**/*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
], | ||
"test/**/*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
] | ||
}, | ||
"peerDependencies": { | ||
"css-loader": "*", | ||
"vue-template-compiler": "^2.0.0" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-loader": "^7.1.4", | ||
"babel-preset-env": "^1.6.1", | ||
"css-loader": "^0.28.11", | ||
"eslint": "^4.19.0", | ||
"eslint-plugin-vue-libs": "^2.1.0", | ||
"javascript-stringify": "^1.6.0", | ||
"jest": "^22.4.2", | ||
"jsdom": "^11.6.2", | ||
"lint-staged": "^7.0.0", | ||
"node-sass": "^4.7.2", | ||
"normalize-newline": "^3.0.0", | ||
"pug": "^2.0.1", | ||
"sass-loader": "^6.0.7", | ||
"stylus": "^0.54.5", | ||
"stylus-loader": "^3.0.2", | ||
"vue": "^2.5.16", | ||
"vue-template-compiler": "^2.5.16", | ||
"webpack": "^4.1.0", | ||
"webpack-cli": "^2.0.10" | ||
"webpack-cli": "^2.0.10", | ||
"webpack-merge": "^4.1.2", | ||
"yorkie": "^1.0.3" | ||
}, | ||
"dependencies": { | ||
"consolidate": "^0.15.0", | ||
"debug": "^3.1.0", | ||
"hash-sum": "^1.0.2", | ||
"loader-utils": "^1.1.0", | ||
"lru-cache": "^4.1.2", | ||
"postcss": "^6.0.20", | ||
"postcss-selector-parser": "^3.1.1", | ||
"prettier": "^1.11.1", | ||
"source-map": "^0.7.2", | ||
"vue-component-compiler": "vuejs/vue-component-compiler#master", | ||
... | ... |
test/.eslintrc.js
0 → 100644
test/advanced.spec.js
0 → 100644
test/core.spec.js
0 → 100644
test/custom.spec.js
0 → 100644
test/fixtures/basic.vue
0 → 100644
test/fixtures/entry.js
0 → 100644
test/fixtures/es2015.vue
0 → 100644
test/fixtures/extend.vue
0 → 100644
test/fixtures/functional.vue
0 → 100644
test/fixtures/logo.png
0 → 100644
12.5 KB
test/fixtures/markdown.vue
0 → 100644
test/fixtures/postcss.vue
0 → 100644
test/fixtures/pre.vue
0 → 100644
test/fixtures/resolve.vue
0 → 100644
test/fixtures/scoped-css.vue
0 → 100644
test/fixtures/ssr-style.js
0 → 100644
test/fixtures/ssr-style.vue
0 → 100644
test/fixtures/transform.vue
0 → 100644
test/fixtures/unit-test.js
0 → 100644
test/mock-loaders/blog.js
0 → 100644
test/mock-loaders/css.js
0 → 100644
test/mock-loaders/docs.js
0 → 100644
test/mock-loaders/html.js
0 → 100644
test/mock-loaders/i18n.js
0 → 100644
test/mock-loaders/js.js
0 → 100644
test/mock-loaders/yaml.js
0 → 100644
test/script.spec.js
0 → 100644
test/ssr.spec.js
0 → 100644
test/style.spec.js
0 → 100644
test/template.spec.js
0 → 100644
test/utils.js
0 → 100644
This diff is collapsed.