Skip to content

Commit c660c54

Browse files
authored
refactor!: convert to Polymer 3
vaadin/vaadin-lumo-styles#104
1 parent 4ca6b7f commit c660c54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1208
-5740
lines changed

packages/vaadin-lumo-styles/.bowerrc

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"extends": "vaadin",
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:prettier/recommended"
5+
],
6+
"plugins": ["prettier"],
37
"env": {
48
"browser": true,
5-
"node": true,
69
"es6": true
710
},
811
"parserOptions": {
9-
"ecmaVersion": 8
10-
},
11-
"plugins": [
12-
"html"
13-
],
14-
"globals": {
15-
"Polymer": false,
16-
"Vaadin": false
12+
"sourceType": "module",
13+
"ecmaVersion": 2020
1714
}
1815
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: tests
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
unit-tests:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 12
14+
15+
- name: Install dependencies
16+
run: npm install
17+
18+
- name: Lint JavaScript
19+
run: npm run lint:js
20+
21+
- name: Lint CSS
22+
run: npm run lint:css

packages/vaadin-lumo-styles/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"printWidth": 120,
4+
"trailingComma": "none",
5+
"htmlWhitespaceSensitivity": "strict"
6+
}

packages/vaadin-lumo-styles/.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

packages/vaadin-lumo-styles/all-imports.html

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* @license
3+
* Copyright (c) 2021 Vaadin Ltd.
4+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5+
*/
6+
import './mixins/field-button.js';
7+
export * from './mixins/field-button.js';
8+
import './mixins/menu-overlay.js';
9+
export * from './mixins/menu-overlay.js';
10+
import './mixins/overlay.js';
11+
export * from './mixins/overlay.js';
12+
import './mixins/required-field.js';
13+
export * from './mixins/required-field.js';
14+
import './badge.js';
15+
export * from './badge.js';
16+
import './color.js';
17+
export * from './color.js';
18+
import './font-icons.js';
19+
export * from './font-icons.js';
20+
import './icons.js';
21+
export * from './icons.js';
22+
import './sizing.js';
23+
export * from './sizing.js';
24+
import './spacing.js';
25+
export * from './spacing.js';
26+
import './style.js';
27+
export * from './style.js';
28+
import './typography.js';
29+
export * from './typography.js';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import {CSSResult} from 'lit-element';
1+
import { CSSResult } from 'lit-element';
22

33
export const badge: CSSResult;

packages/vaadin-lumo-styles/badge.html

Lines changed: 0 additions & 192 deletions
This file was deleted.

0 commit comments

Comments
 (0)