Transition to monorepo on a new Dev branch

This commit is contained in:
2023-02-22 10:29:46 +01:00
parent 8436f03ec7
commit 3a483dc0ef
3712 changed files with 751 additions and 11 deletions

66
App/Source/node_modules/pug-lexer/History.md generated vendored Normal file
View File

@@ -0,0 +1,66 @@
2.3.0 / 2016-09-11
==================
* Update is-expression to 3.0.0
2.2.2 / 2016-09-07
==================
* Support non-standard class names that start with two hyphens in class
literals, most notably used in Bemto
2.2.1 / 2016-08-29
==================
* Fix semantics of `isExpression` plugin
2.2.0 / 2016-08-26
==================
* Allow customizing `isExpression`
2.1.0 / 2016-08-22
==================
* Allow attributes that start with a colon
2.0.3 / 2016-08-07
==================
* Allow `when` expressions with colons
* Fix incorrect location of some errors
2.0.2 / 2016-06-02
==================
* Fix incorrect location of some invalid expressions in an attribute.
2.0.1 / 2016-05-31
==================
* Update README for `filename` option
2.0.0 / 2016-05-14
==================
* Take the `filename` as an option rather than special casing it. This means that lex only takes 2 arguments rather than 3
* Add support for an inline comment after a block. This means block names can no longer contain `//`
* Add type checking on arguments
1.2.0 / 2016-05-14
==================
* Throw a more helpful error if someone attempts to use the old `- each foo in bar` syntax (it should not have the `- ` prefix)
* Add Error reporting for invalid case expressions
1.0.1 / 2016-04-18
==================
* Update dependencies
- Update to `is-expression@2` which allows ES2015-style template strings
by default.
1.0.0 / 2015-12-23
==================
* First stable release

19
App/Source/node_modules/pug-lexer/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,19 @@
Copyright (c) 2014 Forbes Lindesay
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

1520
App/Source/node_modules/pug-lexer/index.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

26
App/Source/node_modules/pug-lexer/package.json generated vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "pug-lexer",
"version": "4.1.0",
"description": "The pug lexer (takes a string and converts it to an array of tokens)",
"keywords": [
"pug"
],
"dependencies": {
"character-parser": "^2.1.1",
"is-expression": "^3.0.0",
"pug-error": "^1.3.3"
},
"devDependencies": {
"acorn": "^3.0.4"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/pugjs/pug/tree/master/packages/pug-lexer"
},
"author": "ForbesLindesay",
"license": "MIT",
"gitHead": "1bdf628a70fda7a0d840c52f3abce54b1c6b0130"
}