@absolutejs/absolute 0.19.0-beta.189 → 0.19.0-beta.190
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/src/angular/index.js +52 -29249
- package/dist/src/angular/index.js.map +7 -7
- package/dist/src/angular/resolveAngularPackage.d.ts +7 -0
- package/dist/src/build.js +129 -29326
- package/dist/src/build.js.map +7 -7
- package/dist/src/index.js +143 -29340
- package/dist/src/index.js.map +7 -7
- package/package.json +1 -1
- package/.absolutejs/cache/angular-linker/158f5d2f54406892543656d582e21ae3.js +0 -381
- package/.absolutejs/cache/angular-linker/1d7d0bc01f6cc20c395ef4db9c650d0f.js +0 -314
- package/.absolutejs/cache/angular-linker/40154141000203d655aadbd789faf88b.js +0 -2836
- package/.absolutejs/cache/angular-linker/4de63c283da0f961c1a06e7d70ade436.js +0 -593
- package/.absolutejs/cache/angular-linker/632a6c2bd34d1659fd7bdd363a116781.js +0 -122
- package/.absolutejs/cache/angular-linker/63ed1410c0e3412b2e85125836ee21c1.js +0 -2029
- package/.absolutejs/cache/angular-linker/74f08c52f5a8513fd37c1627c364f298.js +0 -693
- package/.absolutejs/cache/angular-linker/b7a9e782fcfefd6aa8904e2619f4e503.js +0 -1348
- package/.absolutejs/cache/angular-linker/d27f508017fb07f5fd6a908e7a7dd5b7.js +0 -33
- package/.absolutejs/cache/angular-linker/df86b7673871f02c13eba6bdc09b4006.js +0 -2900
- package/.absolutejs/cert.pem +0 -11
- package/.absolutejs/eslint-cache +0 -1
- package/.absolutejs/key.pem +0 -5
- package/.absolutejs/prettier.cache.json +0 -219
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolve an Angular package path from process.cwd()/node_modules/ first,
|
|
3
|
+
* falling back to the bare specifier. This prevents Bun's baked import.meta.dir
|
|
4
|
+
* from resolving Angular packages from the absolutejs source tree instead of
|
|
5
|
+
* the consumer's project when running from a published npm package.
|
|
6
|
+
*/
|
|
7
|
+
export declare const resolveAngularPackage: (specifier: string) => string;
|