Skip to content

Commit 25bf1a2

Browse files
author
Guy Bedford
authored
fix: do not use colon character in types for windows support (#726)
1 parent eac76f8 commit 25bf1a2

24 files changed

+28
-22
lines changed
File renamed without changes.

test-d/fastly:backend.test-d.ts renamed to test-d/backend.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:backend.d.ts" />
1+
/// <reference path="../types/backend.d.ts" />
22
import { Backend, BackendConfiguration } from "fastly:backend";
33
import {expectError, expectType} from 'tsd';
44

test-d/fastly:cache-override.test-d.ts renamed to test-d/cache-override.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:cache-override.d.ts" />
1+
/// <reference path="../types/cache-override.d.ts" />
22
import { CacheOverride } from "fastly:cache-override";
33
import { expectType } from 'tsd';
44

test-d/fastly:config-store.test-d.ts renamed to test-d/config-store.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:config-store.d.ts" />
1+
/// <reference path="../types/config-store.d.ts" />
22
import { ConfigStore } from "fastly:config-store";
33
import {expectError, expectType} from 'tsd';
44

test-d/fastly:dictionary.test-d.ts renamed to test-d/dictionary.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:dictionary.d.ts" />
1+
/// <reference path="../types/dictionary.d.ts" />
22
import { Dictionary } from "fastly:dictionary";
33
import {expectError, expectType} from 'tsd';
44

test-d/fastly:env.test-d.ts renamed to test-d/env.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:env.d.ts" />
1+
/// <reference path="../types/env.d.ts" />
22
import { env } from "fastly:env";
33
import { expectType } from 'tsd';
44

test-d/fastly:experimental.test-d.ts renamed to test-d/experimental.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:experimental.d.ts" />
1+
/// <reference path="../types/experimental.d.ts" />
22
import { setBaseURL, setDefaultBackend, enableDebugLogging, includeBytes, allowDynamicBackends } from "fastly:experimental";
33
import { expectType } from 'tsd';
44

test-d/fastly:fanout.test-d.ts renamed to test-d/fanout.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:fanout.d.ts" />
1+
/// <reference path="../types/fanout.d.ts" />
22
import { createFanoutHandoff } from "fastly:fanout";
33
import { expectType } from 'tsd';
44

test-d/fastly:geolocation.test-d.ts renamed to test-d/geolocation.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:geolocation.d.ts" />
1+
/// <reference path="../types/geolocation.d.ts" />
22
import { Geolocation, getGeolocationForIpAddress } from "fastly:geolocation";
33
import { expectType } from 'tsd';
44

test-d/fastly:kv-store.test-d.ts renamed to test-d/kv-store.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:kv-store.d.ts" />
1+
/// <reference path="../types/kv-store.d.ts" />
22
import { KVStore, KVStoreEntry } from "fastly:kv-store";
33
import { expectError, expectType } from 'tsd';
44

test-d/fastly:logger.test-d.ts renamed to test-d/logger.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../types/fastly:logger.d.ts" />
1+
/// <reference path="../types/logger.d.ts" />
22
import { Logger } from "fastly:logger";
33
import { expectError, expectType } from 'tsd';
44

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

types/fastly:experimental.d.ts renamed to types/experimental.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="globals.d.ts" />
2+
13
/**
24
* @experimental
35
*/

types/fastly:fanout.d.ts renamed to types/fanout.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="globals.d.ts" />
2+
13
declare module "fastly:fanout" {
24
/**
35
*
File renamed without changes.

types/index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
/// <reference path="fastly:backend.d.ts" />
2-
/// <reference path="fastly:cache-override.d.ts" />
3-
/// <reference path="fastly:config-store.d.ts" />
4-
/// <reference path="fastly:dictionary.d.ts" />
5-
/// <reference path="fastly:env.d.ts" />
6-
/// <reference path="fastly:experimental.d.ts" />
7-
/// <reference path="fastly:fanout.d.ts" />
8-
/// <reference path="fastly:geolocation.d.ts" />
9-
/// <reference path="fastly:logger.d.ts" />
10-
/// <reference path="fastly:kv-store.d.ts" />
11-
/// <reference path="fastly:cache.d.ts" />
12-
/// <reference path="fastly:secret-store.d.ts" />
1+
/// <reference path="backend.d.ts" />
2+
/// <reference path="cache-override.d.ts" />
3+
/// <reference path="config-store.d.ts" />
4+
/// <reference path="dictionary.d.ts" />
5+
/// <reference path="env.d.ts" />
6+
/// <reference path="experimental.d.ts" />
7+
/// <reference path="fanout.d.ts" />
8+
/// <reference path="geolocation.d.ts" />
9+
/// <reference path="logger.d.ts" />
10+
/// <reference path="kv-store.d.ts" />
11+
/// <reference path="cache.d.ts" />
12+
/// <reference path="secret-store.d.ts" />
1313
/// <reference path="globals.d.ts" />

types/fastly:kv-store.d.ts renamed to types/kv-store.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference path="globals.d.ts" />
2+
13
declare module "fastly:kv-store" {
24
/**
35
* Class for accessing a [Fastly KV-store](https://developer.fastly.com/reference/api/kv-store/).
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)