File tree Expand file tree Collapse file tree 6 files changed +224
-4
lines changed Expand file tree Collapse file tree 6 files changed +224
-4
lines changed Original file line number Diff line number Diff line change
1
+ @fortawesome:registry = https://npm.fontawesome.com/
1
2
@sanomalearning:registry = https://npm.pkg.github.com/
Original file line number Diff line number Diff line change 4
4
< meta charset ="UTF-8 ">
5
5
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
6
< link rel ="stylesheet " href ="https://use.typekit.net/kes1hoh.css ">
7
+ < link rel ="stylesheet " href ="./node_modules/@sanomalearning/slds-sanoma-learning/all.css ">
8
+ < link rel ="stylesheet " href ="./node_modules/@sanomalearning/slds-sanoma-learning/fonts.css ">
9
+ < link rel ="stylesheet " href ="./node_modules/@sanomalearning/slds-sanoma-learning/typography.css ">
7
10
< title > Demo</ title >
8
11
</ head >
9
12
< body >
Original file line number Diff line number Diff line change 18
18
},
19
19
"wireit" : {
20
20
"start" : {
21
- "command" : " wds --open --watch"
21
+ "command" : " wds --open --watch" ,
22
+ "files" : [
23
+ " web-dev-server.config.js"
24
+ ]
22
25
}
23
26
},
24
27
"dependencies" : {
25
- "@sanomalearning/slds-core" : " ^0.1.1"
28
+ "@sanomalearning/slds-core" : " ^0.1.1" ,
29
+ "@sanomalearning/slds-editor" : " ^0.0.2" ,
30
+ "@sanomalearning/slds-grid" : " ^0.0.3" ,
31
+ "@sanomalearning/slds-sanoma-learning" : " ^0.0.1"
26
32
},
27
33
"devDependencies" : {
28
34
"@web/dev-server" : " ^0.1.35" ,
29
35
"@web/dev-server-esbuild" : " ^0.3.3" ,
36
+ "typescript" : " ^5.0.2" ,
30
37
"wireit" : " ^0.9.5"
31
38
}
32
39
}
Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ export class App extends ScopedElementsMixin(LitElement) {
12
12
}
13
13
14
14
static styles : CSSResultGroup = css `
15
- :host { display: block; }
15
+ :host {
16
+ display: block;
17
+ }
16
18
` ;
17
19
18
20
render ( ) : TemplateResult {
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "target" : " es2022" ,
4
+ "experimentalDecorators" : true ,
5
+ "emitDecoratorMetadata" : true ,
6
+ "useDefineForClassFields" : false ,
7
+ "module" : " esnext" ,
8
+ "moduleResolution" : " node16" ,
9
+ "sourceMap" : true ,
10
+ "outDir" : " dist" ,
11
+ "importHelpers" : true ,
12
+ "esModuleInterop" : true ,
13
+ "forceConsistentCasingInFileNames" : true ,
14
+ "strict" : true ,
15
+ "skipDefaultLibCheck" : true
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments