Skip to content

Commit 5d5f270

Browse files
committed
fix: rename source attribute, rollup fixes
1 parent 9d1916a commit 5d5f270

142 files changed

Lines changed: 537 additions & 497 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bun.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"@types/bun": "^1.3.12",
4-
"oxfmt": "^0.45.0",
5-
"oxlint": "^1.60.0"
4+
"oxfmt": "^0.46.0",
5+
"oxlint": "^1.61.0"
66
},
77
"scripts": {
88
"auto": "bun scripts/package_automation.ts $@",

packages/acl.tg.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as attr from "attr" with { local: "./attr" };
2-
import * as std from "std" with { local: "./std" };
1+
import * as attr from "attr" with { source: "./attr" };
2+
import * as std from "std" with { source: "./std" };
33

44
export const metadata = {
55
homepage: "https://savannah.nongnu.org/projects/acl",

packages/attr/tangram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as std from "std" with { local: "../std" };
1+
import * as std from "std" with { source: "../std" };
22

33
import patches from "./patches" with { type: "directory" };
44

packages/autobuild/autotools/tangram.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import * as std from "std" with { local: "../../std" };
2-
import { $ } from "std" with { local: "../../std" };
1+
import * as std from "std" with { source: "../../std" };
2+
import { $ } from "std" with { source: "../../std" };
33

4-
import autoconf from "autoconf" with { local: "../../autoconf.tg.ts" };
5-
import automake from "automake" with { local: "../../automake.tg.ts" };
6-
import gettext from "gettext" with { local: "../../gettext" };
7-
import help2man from "help2man" with { local: "../../help2man.tg.ts" };
8-
import perl from "perl" with { local: "../../perl" };
9-
import texinfo from "texinfo" with { local: "../../texinfo.tg.ts" };
4+
import autoconf from "autoconf" with { source: "../../autoconf.tg.ts" };
5+
import automake from "automake" with { source: "../../automake.tg.ts" };
6+
import gettext from "gettext" with { source: "../../gettext" };
7+
import help2man from "help2man" with { source: "../../help2man.tg.ts" };
8+
import perl from "perl" with { source: "../../perl" };
9+
import texinfo from "texinfo" with { source: "../../texinfo.tg.ts" };
1010

1111
export const metadata = {
1212
name: "autobuild-autotools",

packages/autobuild/cmake/tangram.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as std from "std" with { local: "../../std" };
2-
import * as cmake from "cmake" with { local: "../../cmake" };
1+
import * as std from "std" with { source: "../../std" };
2+
import * as cmake from "cmake" with { source: "../../cmake" };
33

44
export const metadata = {
55
name: "autobuild-cmake",

packages/autobuild/common/tangram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as std from "std" with { local: "../../std" };
1+
import * as std from "std" with { source: "../../std" };
22

33
export const metadata = {
44
name: "autobuild-common",

packages/autobuild/go/tangram.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as std from "std" with { local: "../../std" };
2-
import * as go from "go" with { local: "../../go.tg.ts" };
1+
import * as std from "std" with { source: "../../std" };
2+
import * as go from "go" with { source: "../../go.tg.ts" };
33

44
export const metadata = {
55
name: "autobuild-go",

packages/autobuild/js/tangram.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as std from "std" with { local: "../../std" };
2-
import * as nodejs from "nodejs" with { local: "../../nodejs.tg.ts" };
1+
import * as std from "std" with { source: "../../std" };
2+
import * as nodejs from "nodejs" with { source: "../../nodejs.tg.ts" };
33
import { wrapScripts } from "../common";
44

55
export const metadata = {

packages/autobuild/python/tangram.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import * as std from "std" with { local: "../../std" };
2-
import * as python from "python" with { local: "../../python" };
3-
// import * as poetry from "poetry" with { local: "../../poetry" };
1+
import * as std from "std" with { source: "../../std" };
2+
import * as python from "python" with { source: "../../python" };
3+
// import * as poetry from "poetry" with { source: "../../poetry" };
44
import { wrapScripts } from "../common";
55

66
export const metadata = {

0 commit comments

Comments
 (0)