fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Allow wasm compilation (#786)

+3 -3
+2 -2
build/builder_unix.go
··· 12 12 // See the License for the specific language governing permissions and 13 13 // limitations under the License. 14 14 // 15 - //go:build !windows 16 - // +build !windows 15 + //go:build !windows && !wasm 16 + // +build !windows,!wasm 17 17 18 18 package build 19 19
+1 -1
tombstones_unix.go
··· 1 - //go:build !windows 1 + //go:build !windows && !wasm 2 2 3 3 package zoekt 4 4