Commits on Source (20)
-
David Witter authored9b04884a
-
David Witter authoredc29526a2
-
David Witter authoredb62a40e3
-
David Witter authored89a7192b
-
David Witter authored8efd3cd5
-
David Witter authored
feat: add custom event listener
Unverified0df58507 -
David Witter authoredUnverifiedc6f90528
-
David Witter authoredUnverified36460190
-
David M Sibley authored5c064e97
-
David M Sibley authored
transpile js sources
Unverified6801f967 -
David M Sibley authored40a66cc2
-
David M Sibley authored65aec922
-
David M Sibley authored
add css-vars-ponyfill to demo page
Unverified8ad0b0bb -
David M Sibley authoredf4bf1058
-
David M Sibley authored
Adding BrowserStack logo to README
Unverified73c2fc99 -
David Witter authored5d99c943
-
David Witter authored
make references safer in lifecycle hooks
Unverifiedb6f4e893 -
Scott Berg authored158e7f73
-
Scott Berg authored
Remove update blocking null check See merge request !1
39632626 -
Isaac Evavold authoredbba5b845
Showing
- CHANGELOG.md 6 additions, 0 deletionsCHANGELOG.md
- README.md 37 additions, 13 deletionsREADME.md
- index.html 29 additions, 6 deletionsindex.html
- package-lock.json 1019 additions, 2 deletionspackage-lock.json
- package.json 7 additions, 8 deletionspackage.json
- rollup.config.js 3 additions, 2 deletionsrollup.config.js
- src/.babelrc 7 additions, 0 deletionssrc/.babelrc
- src/myuw-profile.html 7 additions, 1 deletionsrc/myuw-profile.html
- src/myuw-profile.js 25 additions, 27 deletionssrc/myuw-profile.js
This diff is collapsed.
{ | { | ||
"name": "@myuw-web-components/myuw-profile", | "name": "enrollment-profile", | ||
"version": "1.2.2", | "version": "1.3.1", | ||
"description": "Web component that provides an avatar button and profile menu", | "description": "Web component that provides an avatar button and profile menu", | ||
"module": "dist/myuw-profile.min.mjs", | "module": "dist/myuw-profile.min.mjs", | ||
"browser": "dist/myuw-profile.min.js", | "browser": "dist/myuw-profile.min.js", | ||
"scripts": { | "scripts": { | ||
"build": "rollup -c", | "build": "rollup -c", | ||
"watch": "rollup -c -w", | "watch": "rollup -c -w", | ||
"serve": "live-server", | "serve": "live-server --port=4200", | ||
"start": "run-p watch serve", | "start": "run-p watch serve", | ||
"prepare": "npm run build", | "prepare": "npm run build", | ||
"pages": "rm -rf demo && mkdir -p demo && cp -r dist demo/ && cp -r test demo/ && cp index.html demo/ && gh-pages -d demo --repo git@github.com:myuw-web-components/myuw-profile.git", | "pages": "rm -rf demo && mkdir -p demo && cp -r dist demo/ && cp -r test demo/ && cp index.html demo/ && gh-pages -d demo --repo git@github.com:myuw-web-components/myuw-profile.git", | ||
... | @@ -15,19 +15,18 @@ | ... | @@ -15,19 +15,18 @@ |
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
"url": "git+https://github.com/myuw-web-components/myuw-profile.git" | "url": "git+https://git.doit.wisc.edu/adi-ia/enrollment-profile.git" | ||
}, | }, | ||
"author": "", | "author": "", | ||
"license": "Apache-2.0", | "license": "Apache-2.0", | ||
"bugs": { | |||
"url": "https://github.com/myuw-web-components/myuw-profile/issues" | |||
}, | |||
"homepage": "https://github.com/myuw-web-components/myuw-profile#readme", | |||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.1.2", | |||
"@babel/preset-env": "^7.1.0", | |||
"gh-pages": "^1.2.0", | "gh-pages": "^1.2.0", | ||
"live-server": "^1.2.0", | "live-server": "^1.2.0", | ||
"npm-run-all": "^4.1.3", | "npm-run-all": "^4.1.3", | ||
"rollup": "^0.63.4", | "rollup": "^0.63.4", | ||
"rollup-plugin-babel": "^4.0.3", | |||
"rollup-plugin-html": "^0.2.1", | "rollup-plugin-html": "^0.2.1", | ||
"rollup-plugin-minify-es": "^1.1.1", | "rollup-plugin-minify-es": "^1.1.1", | ||
"tota11y": "^0.1.6" | "tota11y": "^0.1.6" | ||
... | ... |
src/.babelrc
0 → 100644