This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Expand file tree Collapse file tree 6 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 17
17
- stage : platform-test
18
18
node_js : " node"
19
19
os : osx
20
+ - stage : platform-test
21
+ node_js : " 11"
22
+ os : linux
23
+ - stage : platform-test
24
+ node_js : " 11"
25
+ os : osx
20
26
- stage : platform-test
21
27
node_js : " 10"
22
28
os : linux
Original file line number Diff line number Diff line change
1
+ ## v4.12.0
2
+
3
+ https://github.com/sass/node-sass/releases/tag/v4.12.0
4
+
1
5
## v4.11.0
2
6
3
7
https://github.com/sass/node-sass/releases/tag/v4.11.0
Original file line number Diff line number Diff line change 4
4
5
5
NodeJS | Minimum node-sass version | Node Module
6
6
--------|--------------------------|------------
7
+ Node 12 | 4.12+ | 72
7
8
Node 11 | 4.10+ | 67
8
9
Node 10 | 4.9+ | 64
9
10
Node 8 | 4.5.3+ | 57
Original file line number Diff line number Diff line change 73
73
- nodejs_version : 11
74
74
GYP_MSVS_VERSION : 2015
75
75
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2015
76
+ - nodejs_version : 12
77
+ GYP_MSVS_VERSION : 2015
78
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2015
76
79
77
80
install :
78
81
- ps : Install-Product node $env:nodejs_version $env:platform
166
169
- nodejs_version : 11
167
170
GYP_MSVS_VERSION : 2015
168
171
APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2015
169
-
172
+ - nodejs_version : 12
173
+ GYP_MSVS_VERSION : 2015
174
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2015
175
+
170
176
install :
171
177
- ps : Install-Product node $env:nodejs_version $env:platform
172
178
- node --version
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ function getHumanNodeVersion(abi) {
77
77
case 59 : return 'Node.js 9.x' ;
78
78
case 64 : return 'Node.js 10.x' ;
79
79
case 67 : return 'Node.js 11.x' ;
80
+ case 72 : return 'Node.js 12.x' ;
80
81
default : return false ;
81
82
}
82
83
}
Original file line number Diff line number Diff line change 5
5
6
6
char * create_string (Nan::MaybeLocal<v8::Value> maybevalue) {
7
7
v8::Local<v8::Value> value;
8
-
8
+
9
9
if (maybevalue.ToLocal (&value)) {
10
10
if (value->IsNull () || !value->IsString ()) {
11
11
return 0 ;
@@ -14,7 +14,7 @@ char* create_string(Nan::MaybeLocal<v8::Value> maybevalue) {
14
14
return 0 ;
15
15
}
16
16
17
- v8::String::Utf8Value string (value);
17
+ Nan::Utf8String string (value);
18
18
char *str = (char *)malloc (string.length () + 1 );
19
19
strcpy (str, *string);
20
20
return str;
You can’t perform that action at this time.
0 commit comments