This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//your files | |
module.exports = { | |
"src/a.js": `const b = require("./b");module.exports = class A {}`, | |
"src/b.js": "module.exports = class B {}", | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const AWS = require("aws-sdk"); | |
const {link} = require("linkfs"); | |
const mock = require('mock-require'); | |
const fs = require('fs'); | |
const tmpDir = require('os').tmpdir(); | |
exports.handler = (event, context) => { | |
rewriteFs(); | |
invokeGatsby(context); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// scss/dep.scss | |
#foo { | |
.foo { | |
background: url('../images/a.jpg'); | |
:fullscreen a { | |
display: flex | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final List<InheritedProvider> providers = [ | |
Provider<Api>(create: (_) => Api()), | |
Provider<X>(create: (_) => X()), | |
Provider<Y>(create: (_) => Y()), | |
ProxyProvider3<Api, X, Y, AppData>( | |
update: (_, api, x, y, __) => AppData(api, x, y), | |
), | |
]; | |
class MyApp extends StatelessWidget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ +33 ms] executing: [/opt/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ +47 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ ] 67826bdce54505760fe83b7ead70bdb5af6fe9f2 | |
[ ] executing: [/opt/flutter/] git describe --match v*.*.* --first-parent --long --tags | |
[ +99 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags | |
[ ] v1.15.3-0-g67826bdce | |
[ +9 ms] executing: [/opt/flutter/] git rev-parse --abbrev-ref --symbolic @{u} | |
[ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} | |
[ ] origin/dev | |
[ ] executing: [/opt/flutter/] git ls-remote --get-url origin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# domain model | |
class Company(base): | |
id: int = Column(BigInteger, primary_key=True, autoincrement=True) | |
addresses = relationship("CompanyAddress", backref=backref("company",cascade='all,delete-orphan')) | |
class User(base): | |
id: int = Column(BigInteger, primary_key=True, autoincrement=True) | |
addresses = relationship("UserAddress", backref=backref("user",cascade='all,delete-orphan')) | |
class Address(base): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"schemaVersion":1,"label":"Test Coverage","message":"93.2%","color":"green"} |
OlderNewer