Natalie Weizenbaum
4e529451f5
Run Node API tests on Travis.
2017-07-06 17:39:09 -07:00
Natalie Weizenbaum
6ed530c895
Test the Node.js API.
...
Closes #150
2017-07-06 17:39:07 -07:00
Natalie Weizenbaum
2dd7601ba6
Add an option to not minify the compiled JS
2017-07-06 15:03:27 -07:00
Natalie Weizenbaum
6c0f87f0c8
Factor out logic to ensure that the NPM package is compiled
2017-07-06 14:40:45 -07:00
Natalie Weizenbaum
0851350068
Reformat.
2017-07-06 14:13:29 -07:00
Natalie Weizenbaum
5d574f9923
Add support for ::slotted() ( #156 )
...
See sass/sass#2266
2017-07-05 16:00:20 -07:00
Natalie Weizenbaum
14f0d6ea46
Fix an analysis error.
2017-07-05 15:30:53 -07:00
Sam Rawlins
7d92f2c1ad
Support lineFeed in the Node API ( #153 )
2017-06-15 15:19:26 -07:00
Ben Wiley
6a8573ea85
Missing quote mark added to example node import ( #155 )
2017-06-12 22:28:48 -07:00
Natalie Weizenbaum
bd52c9f80a
Fix analysis issues.
2017-06-06 15:24:22 -07:00
Natalie Weizenbaum
df76883ccd
Update the README for the new npm package.
2017-06-06 15:18:16 -07:00
Natalie Weizenbaum
bd4cc36186
Rename the npm package "sass".
...
We'll continue to build the "dart-sass" package for the time being to
ease migration, but I expect to move entirely to "sass" by 1.0.0
stable.
2017-06-06 15:11:12 -07:00
Natalie Weizenbaum
54d4f3f608
Fix my npm author URL.
2017-06-06 15:07:12 -07:00
Natalie Weizenbaum
f8d4352607
Revert "Build an application snapshot."
...
This reverts commit ba4712fe3c
.
I forgot that application snapshots aren't cross-platform, and I don't
have a good solution for building on multiple platforms yet 😞 .
2017-06-05 12:52:56 -07:00
Natalie Weizenbaum
bd912aee4f
Release 1.0.0-beta.1.
2017-06-05 12:50:47 -07:00
Natalie Weizenbaum
ba4712fe3c
Build an application snapshot.
...
This dramatically improves startup speed.
2017-06-05 12:48:03 -07:00
Natalie Weizenbaum
ab48b7104d
Upgrade to the latest source_span. ( #151 )
2017-06-05 12:35:30 -07:00
Natalie Weizenbaum
e032de83fb
Allow \ before a selector in the indented syntax. ( #152 )
...
See sass/sass-spec#1136
2017-06-02 18:04:21 -07:00
Sam Rawlins
457a333727
Add indentType and indentWidth parameters ( #136 )
...
See #8
2017-06-02 15:42:22 -07:00
Sam Rawlins
7677ab1ba4
Parse declaration children before building its span ( #149 )
2017-06-01 15:36:16 -07:00
Natalie Weizenbaum
b02da78c98
Update the Node version constraint.
...
We're using `process.exitCode`, which was added in v0.11.8.
Closes #95
2017-06-01 15:10:26 -07:00
Natalie Weizenbaum
59e782e4dc
Fix rounding behavior. ( #147 )
2017-05-29 17:07:21 -07:00
Natalie Weizenbaum
6202908b06
Merge pull request #146 from sass/fixes
...
Fix more bugs.
2017-05-29 16:37:53 -07:00
Natalie Weizenbaum
c5e52d571c
Document lack of support for non-UTF8 encodings.
2017-05-28 16:36:11 -07:00
Natalie Weizenbaum
f8f90dc1e3
Improve the output of pseudo selectors.
...
Specifically, if a pseudo selector takes arguments and those arguments
had trailing whitespace in the source document, they no longer have
trailing whitespace in the output.
2017-05-28 16:21:58 -07:00
Natalie Weizenbaum
0ae7372d75
Allow compound extendees in selector functions.
2017-05-28 16:00:37 -07:00
Natalie Weizenbaum
b4d1d95889
Don't use partially-extended selectors as parents.
2017-05-28 15:54:18 -07:00
Sam Rawlins
2fd9df9b2c
Fix ArgumentDeclaration.toString() when no args except rest ( #145 )
2017-05-28 14:20:01 -07:00
Natalie Weizenbaum
890b9d140e
Merge pull request #143 from sass/extend-cleanup
...
Refactor extend.
2017-05-28 14:03:24 -07:00
Natalie Weizenbaum
c63e62abe9
Add changelog entries.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
566156b3be
Don't trim original compound selectors.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
5a95a72771
Extend existing extensions.
...
This allows us to support cases where an extension's extender is itself
extended after it's declared but before it's used.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
57fd640b43
Move _extendExistingStyleRules into a method.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
44244a2e88
Don't register a selector unnecessarily.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
4193b6346b
Simplify specificity propagation.
...
A simple selector's source specificity should only come from its
original complex selector, and shouldn't be modified by extensions.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
9cfbf79f47
Check extend usage after the fact.
...
This means that extensions that match but fail to unify are valid, but
we think that's okay; see sass/sass#2250 .
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
9ded7e9e68
Use Maps rather than Expandos in Extender.
...
This seems to be substantially faster, at least on the VM.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
2f1fbcde69
Extend compound selectors in parallel.
...
Rather than extending each selector individually and unifying them with
the un-extended rest, this extends everything in one step and unifies in
the next.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
0e7ec951c3
Fix universal selector unification.
...
See sass/sass#2247
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
5a9b11084b
Track the extender in the ExtendState.
...
Also rename it Extension.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
fe286487bd
Track extenders by complex selector.
...
This allows us to share more logic if selector lists overlap.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
4173ffc901
Factor out _maybeExtendPseudo from _extendCompound.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
454171d7a0
Clean up _extendComplex by removing a variable.
2017-05-27 17:47:34 -07:00
Natalie Weizenbaum
c006fd8f14
Choose color names in alphabetical order. ( #144 )
2017-05-27 17:44:43 -07:00
Natalie Weizenbaum
4243535941
Update the formatter version.
2017-05-27 17:18:13 -07:00
Natalie Weizenbaum
4db551e603
Stop using scheduled_test. ( #142 )
2017-05-25 14:23:48 -07:00
Sam Rawlins
3b6f5ec3a0
Add a separator character to ListSeparator ( #133 )
2017-05-25 12:56:12 -07:00
Natalie Weizenbaum
61da3ec6b7
Disallow all top-level declarations and extend. ( #141 )
...
We were previously allowing declarations and extend in control
directives at the top level of documents, as long as those documents
were only ever imported in a nested context.
2017-05-25 12:18:57 -07:00
Natalie Weizenbaum
d4db75a8f9
Merge pull request #140 from sass/fixes
...
Fix a number of small bugs.
2017-05-19 18:59:17 -07:00
Natalie Weizenbaum
b3a00edec1
Properly parse unary operators after commas.
...
Closes #138
2017-05-18 18:13:33 -07:00