前端组件调整,剔除无用文件
This commit is contained in:
@@ -1,51 +0,0 @@
|
||||
{
|
||||
"name": "fullcalendar",
|
||||
"title": "FullCalendar",
|
||||
"description": "Full-sized drag & drop event calendar",
|
||||
"keywords": [
|
||||
"calendar",
|
||||
"event",
|
||||
"full-sized",
|
||||
"jquery-plugin"
|
||||
],
|
||||
"homepage": "https://fullcalendar.io/",
|
||||
"bugs": "https://fullcalendar.io/wiki/Reporting-Bugs/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fullcalendar/fullcalendar.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Adam Shaw",
|
||||
"email": "arshaw@arshaw.com",
|
||||
"url": "http://arshaw.com/"
|
||||
},
|
||||
"copyright": "2018 Adam Shaw",
|
||||
"dependencies": {
|
||||
"jquery": "2 - 3",
|
||||
"moment": "^2.20.1"
|
||||
},
|
||||
"main": [
|
||||
"dist/fullcalendar.js",
|
||||
"dist/fullcalendar.css"
|
||||
],
|
||||
"ignore": [
|
||||
"*",
|
||||
"**/.*",
|
||||
"!/dist/**",
|
||||
"!/README.*",
|
||||
"!/LICENSE.*",
|
||||
"!/CHANGELOG.*",
|
||||
"!/CONTRIBUTING.*"
|
||||
],
|
||||
"version": "3.10.1",
|
||||
"_release": "3.10.1",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v3.10.1",
|
||||
"commit": "a5dcae91e5acb4003039c7032d6858bd1a6c544f"
|
||||
},
|
||||
"_source": "https://github.com/fullcalendar/fullcalendar.git",
|
||||
"_target": "^3.4",
|
||||
"_originalSource": "fullcalendar"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,127 +0,0 @@
|
||||
|
||||
## Reporting Bugs
|
||||
|
||||
Each bug report MUST have a [Codepen/JSFiddle] recreation before any work can begin. [further instructions »](http://fullcalendar.io/wiki/Reporting-Bugs/)
|
||||
|
||||
|
||||
## Requesting Features
|
||||
|
||||
Please search the [Issue Tracker] to see if your feature has already been requested, and if so, subscribe to it. Otherwise, read these [further instructions »](http://fullcalendar.io/wiki/Requesting-Features/)
|
||||
|
||||
|
||||
## Contributing Features
|
||||
|
||||
The FullCalendar project welcomes [Pull Requests][Using Pull Requests] for new features, but because there are so many feature requests (over 100), and because every new feature requires refinement and maintenance, each PR will be prioritized against the project's other demands and might take a while to make it to an official release.
|
||||
|
||||
Furthermore, each new feature should be designed as robustly as possible and be useful beyond the immediate usecase it was initially designed for. Feel free to start a ticket discussing the feature's specs before coding.
|
||||
|
||||
|
||||
## Contributing Bugfixes
|
||||
|
||||
In the description of your [Pull Request][Using Pull Requests], please include recreation steps for the bug as well as a [JSFiddle/JSBin] demo. Communicating the buggy behavior is a requirement before a merge can happen.
|
||||
|
||||
|
||||
## Contributing Locales
|
||||
|
||||
Please edit the original files in the `locale/` directory. DO NOT edit anything in the `dist/` directory. The build system will responsible for merging FullCalendar's `locale/` data with the [MomentJS locale data].
|
||||
|
||||
|
||||
## Other Ways to Contribute
|
||||
|
||||
[Read about other ways to contribute »](http://fullcalendar.io/wiki/Contributing/)
|
||||
|
||||
|
||||
## Getting Set Up
|
||||
|
||||
You will need [Git][git], [Node][node], and NPM installed. For clarification, please view the [jQuery readme][jq-readme], which requires a similar setup.
|
||||
|
||||
Also, you will need the [gulp-cli][gulp-cli] package installed globally (`-g`) on your system:
|
||||
|
||||
npm install -g gulp-cli
|
||||
|
||||
Then, clone FullCalendar's git repo:
|
||||
|
||||
git clone git://github.com/fullcalendar/fullcalendar.git
|
||||
|
||||
Enter the directory and install FullCalendar's dependencies:
|
||||
|
||||
cd fullcalendar
|
||||
npm install
|
||||
|
||||
|
||||
## What to edit
|
||||
|
||||
When modifying files, please do not edit the generated or minified files in the `dist/` directory. Please edit the original `src/` files.
|
||||
|
||||
|
||||
## Development Workflow
|
||||
|
||||
After you make code changes, you'll want to compile the JS/CSS so that it can be previewed from the tests and demos. You can either manually rebuild each time you make a change:
|
||||
|
||||
gulp dev
|
||||
|
||||
Or, you can run a script that automatically rebuilds whenever you save a source file:
|
||||
|
||||
gulp watch
|
||||
|
||||
When you are finished, run the following command to write the distributable files into the `./dist/` directory:
|
||||
|
||||
gulp dist
|
||||
|
||||
If you want to clean up the generated files, run:
|
||||
|
||||
gulp clean
|
||||
|
||||
|
||||
## Style Guide
|
||||
|
||||
Please follow the [Google JavaScript Style Guide] as closely as possible. With the following exceptions:
|
||||
|
||||
```js
|
||||
if (true) {
|
||||
}
|
||||
else { // please put else, else if, and catch on a separate line
|
||||
}
|
||||
|
||||
// please write one-line array literals with a one-space padding inside
|
||||
var a = [ 1, 2, 3 ];
|
||||
|
||||
// please write one-line object literals with a one-space padding inside
|
||||
var o = { a: 1, b: 2, c: 3 };
|
||||
```
|
||||
|
||||
Other exceptions:
|
||||
|
||||
- please ignore anything about Google Closure Compiler or the `goog` library
|
||||
- please do not write JSDoc comments
|
||||
|
||||
Notes about whitespace:
|
||||
|
||||
- **use *tabs* instead of spaces**
|
||||
- separate functions with *2* blank lines
|
||||
- separate logical blocks within functions with *1* blank line
|
||||
|
||||
Run the command line tool to automatically check your style:
|
||||
|
||||
gulp lint
|
||||
|
||||
|
||||
## Before Submitting your Code
|
||||
|
||||
If you have edited code (including **tests** and **translations**) and would like to submit a pull request, please make sure you have done the following:
|
||||
|
||||
1. Conformed to the style guide (successfully run `gulp lint`)
|
||||
|
||||
2. Written automated tests. View the [Automated Test Readme]
|
||||
|
||||
|
||||
[Codepen/JSFiddle]: http://fullcalendar.io/wiki/Reporting-Bugs/
|
||||
[Issue Tracker]: https://github.com/fullcalendar/fullcalendar/issues
|
||||
[Using Pull Requests]: https://help.github.com/articles/using-pull-requests/
|
||||
[MomentJS locale data]: https://github.com/moment/moment/tree/develop/locale
|
||||
[git]: http://git-scm.com/
|
||||
[node]: http://nodejs.org/
|
||||
[gulp-cli]: https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md
|
||||
[jq-readme]: https://github.com/jquery/jquery/blob/master/README.md#what-you-need-to-build-your-own-jquery
|
||||
[Google JavaScript Style Guide]: http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml
|
||||
[Automated Test Readme]: https://github.com/fullcalendar/fullcalendar/wiki/Automated-Tests
|
||||
@@ -1,20 +0,0 @@
|
||||
Copyright (c) 2015 Adam Shaw
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
@@ -1,20 +0,0 @@
|
||||
|
||||
# FullCalendar
|
||||
|
||||
A full-sized drag & drop event calendar (jQuery plugin). [Project website »](http://fullcalendar.io/)
|
||||
|
||||
**This is the 3.x version of FullCalendar**. 4.x has since been released. It removes jquery and moment as dependencies, revamps the API, and breaks FullCalendar's functionality into separate packages:
|
||||
|
||||
- [@fullcalendar/core](https://www.npmjs.com/package/@fullcalendar/core)
|
||||
- [@fullcalendar/interaction](https://www.npmjs.com/package/@fullcalendar/interaction)
|
||||
- [@fullcalendar/daygrid](https://www.npmjs.com/package/@fullcalendar/daygrid)
|
||||
- [@fullcalendar/timegrid](https://www.npmjs.com/package/@fullcalendar/timegrid)
|
||||
- [@fullcalendar/list](https://www.npmjs.com/package/@fullcalendar/list)
|
||||
- [@fullcalendar/google-calendar](https://www.npmjs.com/package/@fullcalendar/google-calendar)
|
||||
- [@fullcalendar/rrule](https://www.npmjs.com/package/@fullcalendar/rrule)
|
||||
- [@fullcalendar/luxon](https://www.npmjs.com/package/@fullcalendar/luxon)
|
||||
- [@fullcalendar/moment](https://www.npmjs.com/package/@fullcalendar/moment)
|
||||
- [@fullcalendar/moment-timezone](https://www.npmjs.com/package/@fullcalendar/moment-timezone)
|
||||
- [@fullcalendar/bootstrap](https://www.npmjs.com/package/@fullcalendar/bootstrap)
|
||||
|
||||
For more info, [view the upgrade guide »](https://fullcalendar.io/docs/upgrading-from-v3)
|
||||
@@ -1,41 +0,0 @@
|
||||
{
|
||||
"name": "fullcalendar",
|
||||
"title": "FullCalendar",
|
||||
"description": "Full-sized drag & drop event calendar",
|
||||
"keywords": [
|
||||
"calendar",
|
||||
"event",
|
||||
"full-sized",
|
||||
"jquery-plugin"
|
||||
],
|
||||
"homepage": "https://fullcalendar.io/",
|
||||
"bugs": "https://fullcalendar.io/wiki/Reporting-Bugs/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/fullcalendar/fullcalendar.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Adam Shaw",
|
||||
"email": "arshaw@arshaw.com",
|
||||
"url": "http://arshaw.com/"
|
||||
},
|
||||
"copyright": "2018 Adam Shaw",
|
||||
"dependencies": {
|
||||
"jquery": "2 - 3",
|
||||
"moment": "^2.20.1"
|
||||
},
|
||||
"main": [
|
||||
"dist/fullcalendar.js",
|
||||
"dist/fullcalendar.css"
|
||||
],
|
||||
"ignore": [
|
||||
"*",
|
||||
"**/.*",
|
||||
"!/dist/**",
|
||||
"!/README.*",
|
||||
"!/LICENSE.*",
|
||||
"!/CHANGELOG.*",
|
||||
"!/CONTRIBUTING.*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user