Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 4ceb52d

Browse files
authored
refactor: update stackblitz CLI asset to match with CLI rc.2 (#1094)
1 parent a374120 commit 4ceb52d

File tree

13 files changed

+2435
-1416
lines changed

13 files changed

+2435
-1416
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"eslint-plugin-import": "^2.22.1",
7979
"eslint-plugin-jsdoc": "^32.3.0",
8080
"eslint-plugin-prefer-arrow": "^1.2.3",
81-
"firebase-tools": "^9.18.0",
81+
"firebase-tools": "^9.21.0",
8282
"imagemin": "^7.0.1",
8383
"imagemin-pngquant": "^9.0.2",
8484
"jasmine-core": "^3.7.1",

src/assets/stack-blitz/.gitignore

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,46 @@
1-
.angular/
2-
node_modules/
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
16+
# IDEs and editors
17+
/.idea
18+
.project
19+
.classpath
20+
.c9/
21+
*.launch
22+
.settings/
23+
*.sublime-workspace
24+
25+
# IDE - VSCode
26+
.vscode/*
27+
!.vscode/settings.json
28+
!.vscode/tasks.json
29+
!.vscode/launch.json
30+
!.vscode/extensions.json
31+
.history/*
32+
33+
# misc
34+
/.angular/cache
35+
/.sass-cache
36+
/connect.lock
37+
/coverage
38+
/libpeerconnection.log
39+
npm-debug.log
40+
yarn-error.log
41+
testem.log
42+
/typings
43+
44+
# System Files
45+
.DS_Store
46+
Thumbs.db

src/assets/stack-blitz/angular.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"example-app": {
77
"projectType": "application",
88
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss"
11+
},
912
"@schematics/angular:application": {
1013
"strict": true
1114
}
@@ -22,6 +25,7 @@
2225
"main": "src/main.ts",
2326
"polyfills": "src/polyfills.ts",
2427
"tsConfig": "tsconfig.app.json",
28+
"inlineStyleLanguage": "scss",
2529
"assets": [
2630
"src/favicon.ico",
2731
"src/assets"
@@ -93,6 +97,7 @@
9397
"polyfills": "src/polyfills.ts",
9498
"tsConfig": "tsconfig.spec.json",
9599
"karmaConfig": "karma.conf.js",
100+
"inlineStyleLanguage": "scss",
96101
"assets": [
97102
"src/favicon.ico",
98103
"src/assets"

0 commit comments

Comments
 (0)