-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update gts in template * update baseline * update generator dependency GTS to v2 * merge * tests pass * clean up * final work * fix test application * feedback * rerun gts fix * no bracketSpacing * fix tests * drop eslint related dependency * update gts to latest version and rerun gts fix * remove .prettierre.json * remove process.exit(1) * clean up
- Loading branch information
1 parent
5714803
commit 26933fe
Showing
32 changed files
with
199 additions
and
175 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
**/node_modules | ||
**/.coverage | ||
build/ | ||
docs/ | ||
protos/ | ||
test-fixtures/ | ||
pbjs-genfiles/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "./node_modules/gts" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
**/node_modules | ||
**/.coverage | ||
build/ | ||
docs/ | ||
protos/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2020 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
module.exports = { | ||
...require('gts/.prettierrc.json') | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
entry: './build/src/index.js', | ||
output: { | ||
library: "showcaseTest", | ||
filename: "./main.js" | ||
}, | ||
node: { | ||
child_process: 'empty', | ||
fs: 'empty', | ||
crypto: 'empty', | ||
}, | ||
resolve: { | ||
extensions: ['.js', '.json'] | ||
}, | ||
module: { | ||
rules: [ | ||
{ | ||
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/, | ||
use: 'null-loader' | ||
}, | ||
{ | ||
test: /node_modules[\\\/]grpc/, | ||
use: 'null-loader' | ||
}, | ||
{ | ||
test: /node_modules[\\\/]retry-request/, | ||
use: 'null-loader' | ||
}, | ||
{ | ||
test: /node_modules[\\\/]https-proxy-agent/, | ||
use: 'null-loader' | ||
}, | ||
{ | ||
test: /node_modules[\\\/]gtoken/, | ||
use: 'null-loader' | ||
}, | ||
] | ||
}, | ||
mode: 'production' | ||
} | ||
entry: './build/src/index.js', | ||
output: { | ||
library: 'showcaseTest', | ||
filename: './main.js', | ||
}, | ||
node: { | ||
child_process: 'empty', | ||
fs: 'empty', | ||
crypto: 'empty', | ||
}, | ||
resolve: { | ||
extensions: ['.js', '.json'], | ||
}, | ||
module: { | ||
rules: [ | ||
{ | ||
test: /node_modules[\\\/]@grpc[\\\/]grpc-js/, | ||
use: 'null-loader', | ||
}, | ||
{ | ||
test: /node_modules[\\\/]grpc/, | ||
use: 'null-loader', | ||
}, | ||
{ | ||
test: /node_modules[\\\/]retry-request/, | ||
use: 'null-loader', | ||
}, | ||
{ | ||
test: /node_modules[\\\/]https-proxy-agent/, | ||
use: 'null-loader', | ||
}, | ||
{ | ||
test: /node_modules[\\\/]gtoken/, | ||
use: 'null-loader', | ||
}, | ||
], | ||
}, | ||
mode: 'production', | ||
}; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.