File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ export default function(options: StylingOptions) {
30
30
options . extension === 'scss' ?
31
31
( tree : Tree ) => {
32
32
const sassDependency : NodeDependency = {
33
- name : 'nativescript-dev -sass' ,
34
- version : '~1.6.0 ' ,
33
+ name : 'node -sass' ,
34
+ version : '^4.7.1 ' ,
35
35
type : 'devDependency' ,
36
36
} ;
37
37
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ describe('Styling Schematic', () => {
52
52
const tree = schematicRunner . runSchematic ( 'styling' , options , appTree ) ;
53
53
54
54
const content = getFileContent ( tree , `${ appPath } /package.json` ) ;
55
- expect ( content ) . not . toMatch ( '"nativescript-dev -sass": ' ) ;
55
+ expect ( content ) . not . toMatch ( '"node -sass": ' ) ;
56
56
} ) ;
57
57
58
58
it ( 'should handle the theme flag' , ( ) => {
@@ -96,7 +96,7 @@ describe('Styling Schematic', () => {
96
96
const tree = schematicRunner . runSchematic ( 'styling' , options , appTree ) ;
97
97
98
98
const content = getFileContent ( tree , `${ appPath } /package.json` ) ;
99
- expect ( content ) . toMatch ( '"nativescript-dev -sass": ' ) ;
99
+ expect ( content ) . toMatch ( '"node -sass": ' ) ;
100
100
} ) ;
101
101
102
102
it ( 'should handle the theme flag' , ( ) => {
You can’t perform that action at this time.
0 commit comments