Skip to content
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

Irmaku/wc generator issue #383

Merged
merged 26 commits into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a8730bf
docs(issues): update issue templates and settings yml #337
irma-kurnia-phtn Apr 24, 2023
01a8949
docs(issues): remove support for focus-visible polyfill #330
irma-kurnia-phtn Apr 24, 2023
7d744b7
chore(config): add all mdmagic resources to .npmignore #294
irma-kurnia-phtn Apr 24, 2023
579e3d7
fix: update docs on issue template
irma-kurnia-phtn Apr 25, 2023
0c57d59
perf: remove polyfill focus visible
irma-kurnia-phtn Apr 25, 2023
5543c77
revert: .npmignore and update .npmignore.temp
irma-kurnia-phtn Apr 25, 2023
9a8a351
fix: automatically generate TypeScript description files
irma-kurnia-phtn Apr 25, 2023
bb8882c
perf: remove IE support #181
irma-kurnia-phtn Apr 25, 2023
1f80150
docs: issue templates and settings yml at template
irma-kurnia-phtn Apr 25, 2023
57f4b59
fix: generator: update CDN reference #382
irma-kurnia-phtn Apr 25, 2023
ed867e2
feat(typescript): add typescript support
irma-kurnia-phtn Apr 26, 2023
663fcdd
docs: static documents need updating #345
irma-kurnia-phtn Apr 26, 2023
e717311
perf(review): add all suggested updates
blackfalcon May 2, 2023
51c71cb
feat(*): address general issues to get build working
blackfalcon May 2, 2023
4ac5cee
perf(labs): remove auroLabs functionality #339
blackfalcon May 2, 2023
0c44672
perf(settings): update labels #377
blackfalcon May 3, 2023
fa488b5
perf: remove deprecated stylelint rules #381
blackfalcon May 3, 2023
36ee012
fix(sec): remove inefficient regular expression #357
blackfalcon May 3, 2023
f8a4311
fix(reference): update to use @aurodesignsystem #345
blackfalcon May 3, 2023
4ad85ce
perf(windows): update dev script #274
blackfalcon May 3, 2023
d9a33bb
perf(watch): add apiExamples to generate docs #320
blackfalcon May 3, 2023
e8a0eff
docs(readme): update missed reference for docs build
blackfalcon May 3, 2023
7201fcf
refactor(demo): remove unnecessary code from demo page
blackfalcon May 3, 2023
2ced29a
perf(ignore): update configs #385
blackfalcon May 4, 2023
9673434
build: remove npm script for build demo
blackfalcon May 4, 2023
0c6ebae
revert: return removed regex #357
blackfalcon May 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"peerDependencies": {
jason-capsule42 marked this conversation as resolved.
Show resolved Hide resolved
"@alaskaairux/design-tokens": "",
"@alaskaairux/webcorestylesheets": "",
"@webcomponents/webcomponentsjs": "",
"@webcomponents/webcomponentsjs": ""
},
"devDependencies": {
"@alaskaairux/design-tokens": "",
Expand Down Expand Up @@ -84,6 +84,7 @@
"stylelint-config-standard-scss": "",
"stylelint-order": "",
"stylelint-scss": "",
"typescript": "",
"wc-sass-render": "",
"web-component-analyzer": "",
"whatwg-fetch": "",
Expand All @@ -98,7 +99,10 @@
"last 2 Safari major versions"
],
"nodemonConfig": {
"ignore": ["*-css.js", "*.css"]
"ignore": [
"*-css.js",
"*.css"
]
},
"release": {
"branches": [
Expand Down Expand Up @@ -139,7 +143,7 @@
"web components"
],
"scripts": {
"build": "npm-run-all build:sass sass:render dist:js build:api test build:markdownDocs bundler postinstall",
"build": "npm-run-all build:sass sass:render dist:js build:api test build:markdownDocs bundler postinstall types",
"build:ci": "npm-run-all sweep build",
"build:api": "wca analyze 'src/[namespace]-[name].js' --outFiles docs/api.md",
"build:demo": "npm-run-all build demo:rm:build demo:new:build demo:copy:index demo:copy:demo demo:update:index",
Expand Down Expand Up @@ -168,6 +172,7 @@
"serve": "web-dev-server --open demo/ --node-resolve --watch",
"sweep": "rm -rf ./demo/css ./dist | rm ./src/*.css ./src/*-css.js",
"test": "wtr --coverage",
"test:watch": "wtr --watch"
"test:watch": "wtr --watch",
"types": "tsc"
}
}
1 change: 0 additions & 1 deletion template/src/[namespace]-[name].js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { LitElement, html } from "lit-element";
// import AuroElement from '@alaskaairux/webcorestylesheets/dist/auroElement/auroElement';

// Import touch detection lib
import "focus-visible/dist/focus-visible.min.js";
import styleCss from "./style-css.js";
import styleCssFixed from './style-fixed-css.js';

Expand Down