在Mac OSX 10上进行本地开发时,此Meteor项目有一个type Query {
author(firstName: String, lastName: String): Author
allPosts: [Post!]!
}
文件,其中包含以下行:
throw (0, _error.syntaxError)(lexer.source, token.start, 'Expected ' + kind + ', found ' + (0, _lexer.getTokenDesc)(token))
在运行bash脚本构建并将项目推送到云之前,我必须将行更改为:
ddp.js
即。评论和取消注释相关的行。我如何自动执行此操作,因为它需要在不同项目中的多个文件上完成? THX
答案 0 :(得分:1)
# before
sed -ie 's$http://localhost:3000$https://abc.com.au$g' ddp.js
# Do deploy or build
# after
sed -ie 's$https://abc.com.au$http://localhost:3000$g' ddp.js