-
-
Notifications
You must be signed in to change notification settings - Fork 387
Add comet-marquee w/ npm auto-update #2054
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| { | ||
| "name": "comet-marquee", | ||
| "version": "1.1.15", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cdnjs does not need/support a |
||
| "description": "A lightweight, smooth-scrolling marquee plugin for modern browsers. Allows continuous horizontal scrolling of content with optional pause on hover or click.", | ||
| "main": "dist/comet-marquee.cjs", | ||
| "module": "dist/comet-marquee.modern.js", | ||
| "unpkg": "dist/comet-marquee.umd.js", | ||
| "source": "src/index.js", | ||
| "style": "dist/comet-marquee.css", | ||
| "scripts": { | ||
| "build": "microbundle", | ||
| "dev": "microbundle watch" | ||
| }, | ||
|
Comment on lines
+5
to
+13
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cdnjs does not need/support a |
||
| "keywords": [ | ||
| "marquee", | ||
| "scroll", | ||
| "plugin", | ||
| "comet" | ||
| ], | ||
| "author": "Oleksandr Vorushylo || Rhaegar259", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cdnjs expects an |
||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/OleksandrVorushylo/comet-marquee.git" | ||
| }, | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "microbundle": "^0.15.1", | ||
| "rollup-plugin-import-css": "^4.0.2" | ||
| }, | ||
|
Comment on lines
+26
to
+29
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cdnjs does not need/support a |
||
| "autoupdate": { | ||
| "source": "npm", | ||
| "target": "comet-marquee", | ||
| "fileMap": [ | ||
| { | ||
| "basePath": "dist", | ||
| "files": ["**/*"] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We do not accept configs that contain an open-ended globstar, as it can result in files being added to the CDN that are not needed. Looking at your package on NPM, you should just need |
||
| } | ||
| ] | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per the convention set out by all the other files in this repo, your file should be at
packages/c/comet-marquee.json