Skip to content

Commit 7c48325

Browse files
committed
Rename package and remove existing URLs
Remove any associations with TC39, as well.
1 parent 0ef8ec4 commit 7c48325

19 files changed

+20
-30
lines changed

package.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "proposal-temporal",
2+
"name": "temporal-polyfill",
33
"version": "0.8.0",
4-
"description": "Experimental polyfill for the TC39 Temporal proposal",
4+
"description": "Polyfill for Temporal",
55
"type": "commonjs",
66
"main": "dist/index.js",
77
"browser": "dist/index.umd.js",
@@ -19,11 +19,6 @@
1919
"prepublishOnly": "npm run build",
2020
"playground": "node --experimental-modules --no-warnings --icu-data-dir node_modules/full-icu -r ./lib/init.js"
2121
},
22-
"repository": {
23-
"type": "git",
24-
"url": "git+https://github.com/tc39/proposal-temporal.git",
25-
"directory": "polyfill"
26-
},
2722
"keywords": [
2823
"Calendar",
2924
"Date",
@@ -32,7 +27,6 @@
3227
"Instant",
3328
"MonthDay",
3429
"Polyfill",
35-
"TC39",
3630
"Temporal",
3731
"Time",
3832
"Timestamp",
@@ -54,10 +48,6 @@
5448
"Ujjwal Sharma"
5549
],
5650
"license": "ISC",
57-
"bugs": {
58-
"url": "https://github.com/tc39/proposal-temporal/issues"
59-
},
60-
"homepage": "https://tc39.es/proposal-temporal/docs/index.html",
6151
"files": [
6252
"index.d.ts",
6353
"dist",

test/calendar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { reporter } = Pretty;
1212
import { strict as assert } from 'assert';
1313
const { equal, throws } = assert;
1414

15-
import * as Temporal from 'proposal-temporal';
15+
import * as Temporal from 'temporal-polyfill';
1616
const { Calendar } = Temporal;
1717

1818
describe('Calendar', () => {

test/datemath.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal } = assert;
1616

17-
import * as Temporal from 'proposal-temporal';
17+
import * as Temporal from 'temporal-polyfill';
1818

1919
describe('Date.since(simple, simple)', () => {
2020
build('Before Leap Day', '2020-01-03', '2020-02-15');

test/duration.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { reporter } = Pretty;
77
import { strict as assert } from 'assert';
88
const { throws, equal, notEqual } = assert;
99

10-
import * as Temporal from 'proposal-temporal';
10+
import * as Temporal from 'temporal-polyfill';
1111
const { Duration } = Temporal;
1212

1313
describe('Duration', () => {

test/exhaust.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Temporal from 'proposal-temporal';
1+
import * as Temporal from 'temporal-polyfill';
22

33
const all = process.argv[2] === 'all';
44
const start = new Temporal.PlainDate(1999, 1, 1);

test/exports.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal } = assert;
1616

17-
import * as Temporal from 'proposal-temporal';
17+
import * as Temporal from 'temporal-polyfill';
1818

1919
describe('Exports', () => {
2020
const named = Object.keys(Temporal);

test/instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, notEqual, throws } = assert;
1616

17-
import * as Temporal from 'proposal-temporal';
17+
import * as Temporal from 'temporal-polyfill';
1818
const { Instant } = Temporal;
1919

2020
describe('Instant', () => {

test/intl.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { deepEqual, equal, throws } = assert;
99

1010
import { DateTimeFormat } from '../lib/intl.mjs';
1111
Intl.DateTimeFormat = DateTimeFormat;
12-
import * as Temporal from 'proposal-temporal';
12+
import * as Temporal from 'temporal-polyfill';
1313

1414
describe('Intl', () => {
1515
// TODO: move these to their respective test files.

test/now.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, throws } = assert;
1616

17-
import * as Temporal from 'proposal-temporal';
17+
import * as Temporal from 'temporal-polyfill';
1818

1919
describe('Temporal.now', () => {
2020
describe('Structure', () => {

test/plaindate.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, notEqual, throws } = assert;
1616

17-
import * as Temporal from 'proposal-temporal';
17+
import * as Temporal from 'temporal-polyfill';
1818
const { PlainDate } = Temporal;
1919

2020
describe('Date', () => {

0 commit comments

Comments
 (0)