Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d265674

Browse files
initial
0 parents commit d265674

File tree

15 files changed

+9123
-0
lines changed

15 files changed

+9123
-0
lines changed

‎.babelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"presets": [
3+
"es2015",
4+
"stage-0"
5+
]
6+
}

‎.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

‎.eslintrc

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"parser": "babel-eslint",
3+
4+
"extends": "eslint:recommended",
5+
6+
env: {
7+
"browser": true,
8+
"mocha": true,
9+
"node": true,
10+
"es6": true
11+
},
12+
13+
"parserOptions": {
14+
"ecmaFeatures": {
15+
"modules": true
16+
}
17+
},
18+
19+
rules: {
20+
"strict": 0,
21+
"quotes": [2, "single"],
22+
"indent": [2, 2, {SwitchCase: 1}],
23+
"semi": [2, "always"],
24+
"no-underscore-dangle": 0,
25+
"no-unused-vars": 1,
26+
"no-unused-expressions": 0,
27+
"new-cap": 0,
28+
"no-extra-boolean-cast": 0,
29+
"yoda": 0,
30+
"no-empty": 0,
31+
"no-use-before-define": 0,
32+
"camelcase": 0,
33+
"object-curly-spacing": 0,
34+
"array-bracket-spacing": 0,
35+
"max-len": 0,
36+
"comma-dangle": [2, "never"],
37+
"space-before-function-paren": 0,
38+
"arrow-body-style": 0,
39+
"no-param-reassign": 0,
40+
"consistent-return": 0,
41+
"no-console": 0,
42+
"no-void": 0,
43+
"func-names": 0,
44+
"no-nested-ternary": 0,
45+
"quote-props": 0,
46+
"space-infix-ops": 0,
47+
"prefer-const": 0,
48+
"prefer-template": 0,
49+
"spaced-comment": 0,
50+
"prefer-rest-params": 0,
51+
"no-unreachable": 0
52+
}
53+
}

‎.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules
3+
*.log
4+
*.map

‎.npmignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
example
2+
src
3+
.editorconfig
4+
.babelrc
5+
.eslintrc
6+
webpack.config.js

‎README.md

Whitespace-only changes.

‎dist/vue-blob-file-upload.js

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
(function webpackUniversalModuleDefinition(root, factory) {
2+
if(typeof exports === 'object' && typeof module === 'object')
3+
module.exports = factory(require("vue"));
4+
else if(typeof define === 'function' && define.amd)
5+
define("VueBlobFielUpload", ["vue"], factory);
6+
else if(typeof exports === 'object')
7+
exports["VueBlobFielUpload"] = factory(require("vue"));
8+
else
9+
root["VueBlobFielUpload"] = factory(root["Vue"]);
10+
})(this, function(__WEBPACK_EXTERNAL_MODULE_1__) {
11+
return /******/ (function(modules) { // webpackBootstrap
12+
/******/ // The module cache
13+
/******/ var installedModules = {};
14+
15+
/******/ // The require function
16+
/******/ function __webpack_require__(moduleId) {
17+
18+
/******/ // Check if module is in cache
19+
/******/ if(installedModules[moduleId])
20+
/******/ return installedModules[moduleId].exports;
21+
22+
/******/ // Create a new module (and put it into the cache)
23+
/******/ var module = installedModules[moduleId] = {
24+
/******/ exports: {},
25+
/******/ id: moduleId,
26+
/******/ loaded: false
27+
/******/ };
28+
29+
/******/ // Execute the module function
30+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31+
32+
/******/ // Flag the module as loaded
33+
/******/ module.loaded = true;
34+
35+
/******/ // Return the exports of the module
36+
/******/ return module.exports;
37+
/******/ }
38+
39+
40+
/******/ // expose the modules object (__webpack_modules__)
41+
/******/ __webpack_require__.m = modules;
42+
43+
/******/ // expose the module cache
44+
/******/ __webpack_require__.c = installedModules;
45+
46+
/******/ // __webpack_public_path__
47+
/******/ __webpack_require__.p = "";
48+
49+
/******/ // Load entry module and return exports
50+
/******/ return __webpack_require__(0);
51+
/******/ })
52+
/************************************************************************/
53+
/******/ ([
54+
/* 0 */
55+
/***/ function(module, exports, __webpack_require__) {
56+
57+
'use strict';
58+
59+
Object.defineProperty(exports, "__esModule", {
60+
value: true
61+
});
62+
63+
var _vue = __webpack_require__(1);
64+
65+
var _vue2 = _interopRequireDefault(_vue);
66+
67+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
68+
69+
exports.default = _vue2.default.component('vue-blob-file-upload', {
70+
template: '<div>Hello!</div>'
71+
});
72+
73+
/***/ },
74+
/* 1 */
75+
/***/ function(module, exports) {
76+
77+
module.exports = __WEBPACK_EXTERNAL_MODULE_1__;
78+
79+
/***/ }
80+
/******/ ])
81+
});
82+
;

‎dist/vue-blob-file-upload.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /