Commit Graph

8302 Commits

Author SHA1 Message Date
Donny/강동윤
fd997d3712
feat(es/minifier): Respect more options (#8582)
**Description:**

This PR makes the ES minifier respect more options.

Changes:
 - `reduce_vars` now enables IIFE invoker.
 - `reduce_vars` now enables seq inliner.
 - `top_retain` is now respected by seq inliner.
 - `arguments` is now ignored by seq inliner.

---------

Co-authored-by: austaras <austaras@outlook.com>
2024-02-02 12:35:58 +00:00
SWC Bot
507c469696 chore: Bump crates 2024-02-02 03:19:05 +00:00
Donny/강동윤
872a47b851
test(es/testing): Ensure that test_inline! is working properly (#8590)
**Related issue:**

 - Closes #8586
2024-02-02 03:17:43 +00:00
SWC Bot
8c1f10823c chore: Bump crates 2024-02-02 01:47:14 +00:00
Donny/강동윤
a7c5255ad1
fix(es/minifier): Fix top-level check (#8583)
**Description:**

Our logic for checking top-level was wrong.
2024-02-02 01:45:41 +00:00
SWC Bot
ef21736584 chore: Bump crates 2024-02-02 01:19:28 +00:00
yannkaiser
8413a6c48e
fix(es/lexer): Fix typo in package keyword (#8589)
**Description:**

There is a typo in the ES lexer for the keyword `package`.

**Related issue:**

- Closes #8588
2024-02-02 10:17:48 +09:00
SWC Bot
386c391081 chore: Bump crates 2024-02-02 00:43:47 +00:00
Donny/강동윤
18e0b53fbb
feat(es/minifier): Inline more IIFE arguments (#8584)
**Description:**

We can inline more.
2024-02-02 09:42:15 +09:00
SWC Bot
1fc8fe2aee chore: Publish 1.3.108-nightly-20240201.1 2024-02-01 00:35:01 +00:00
SWC Bot
429c1bae44 chore: Bump crates 2024-01-31 08:50:09 +00:00
Donny/강동윤
8c322250b7
fix(es/codegen): Fix codegen of async methods with decorators (#8575)
**Related issue:**

 - Closes #4311
2024-01-31 08:48:30 +00:00
SWC Bot
d006482bd9 chore: Bump crates 2024-01-31 04:38:19 +00:00
Donny/강동윤
82bc061b8c
fix(cli): Make Rust CLI use sourcemap code from the swc crate (#8576)
**Related issue:**

 - Closes #8495
2024-01-31 04:36:41 +00:00
SWC Bot
4fd7923669 chore: Publish 1.3.108-nightly-20240131.1 2024-01-31 00:36:25 +00:00
SWC Bot
07b6bcc43f chore: Bump crates 2024-01-30 06:57:23 +00:00
Donny/강동윤
d81596cd2b
fix(es/proposals): Support using using keyword with functions (#8574)
**Related issue:**

 - Closes #8570
 - https://github.com/babel/babel/pull/16150
2024-01-30 15:55:43 +09:00
SWC Bot
f5ee6d1d7f chore: Bump crates 2024-01-30 04:42:21 +00:00
Donny/강동윤
8b86638970
test(es/minifer): Update the passing terser test list (#8573) 2024-01-30 04:40:52 +00:00
SWC Bot
7b32a8fbf3 chore: Publish 1.3.108-nightly-20240129.1 2024-01-29 11:09:36 +00:00
SWC Bot
ba1da1de3c chore: Bump crates 2024-01-29 10:27:13 +00:00
Donny/강동윤
d683089be1
fix(es/testing): Make test_inline! not read output as a file (#8569)
**Description:**

I made a mistake while working on `test_inline!`

**Related issue:**

 - #8568
2024-01-29 10:25:42 +00:00
강동윤 (Donny)
fd7cf4c30a chore: Publish crates 2024-01-28 22:51:53 +09:00
Donny/강동윤
c743200801
chore: Publish v1.3.107 with swc_core v0.89.4` (#8566) 2024-01-28 22:51:03 +09:00
SWC Bot
facff87e21 chore: Publish 1.3.107-nightly-20240128.2 2024-01-28 12:57:17 +00:00
SWC Bot
a5c56a9e14 chore: Bump crates 2024-01-28 12:35:38 +00:00
Donny/강동윤
07634a05ba
fix(es/codegen): Do not produce octal literals (#8565) 2024-01-28 12:34:03 +00:00
SWC Bot
236750716b chore: Publish 1.3.107-nightly-20240128.1 2024-01-28 00:32:56 +00:00
SWC Bot
160043a2d3 chore: Bump crates 2024-01-27 04:57:56 +00:00
xiao xin
d6a4615898
fix(es/loader): Make tsc resolver work for bare specifier (#8550)
**Description:**

From the typescript
[baseUrl](https://www.typescriptlang.org/docs/handbook/modules/reference.html#baseurl)
doc: When using bare specifiers (module specifiers that don’t begin with
./, ../, or /), baseUrl has a higher precedence than node_modules
package lookups.

In the current tsc resolver implementation, when resolving bare module
specifiers, baseUrl was not used except for `paths`, this cause the
belowing resolution failed, but it worked when used in typescript
project.

`tsconfig.json` / `.swcrc`:
```json
{
    baseUrl: "."
    paths: {
        "@common/*": ["src/common/*"]
    }
}
```

File structure:
- ./src/common/helper.ts
- ./src/index.ts


./src/index.ts content:
```ts
 // tsc can resolve this, but tsc resolver cannot
import sth from "src/common/helper"
```
2024-01-27 04:56:11 +00:00
강동윤 (Donny)
039c1685c6 chore: Publish crates 2024-01-25 21:36:33 +09:00
SWC Bot
ceeba491c9 chore: Bump crates 2024-01-25 08:45:33 +00:00
magic-akari
f416aff7d7
fix(es/decorator): Preserve state while traversing the module_items scope (#8556)
**Related issue:**

 - Closes #8551
2024-01-25 08:44:02 +00:00
SWC Bot
5f9b7b4c8b chore: Bump crates 2024-01-25 07:20:48 +00:00
magic-akari
6a8dd8cbb3
fix(es/decorator): Skip TypeScript class method/prop declarations (#8555)
**Related issue:**

- Closes #8552
2024-01-25 07:19:20 +00:00
강동윤 (Donny)
1890e66023 chore: Publish crates 2024-01-25 14:07:30 +09:00
Donny/강동윤
4c0e4fb158
chore: Publish v1.3.106 with swc_core v0.89.1 (#8554) 2024-01-25 14:05:42 +09:00
SWC Bot
2e5ac7a7aa chore: Publish 1.3.106-nightly-20240125.1 2024-01-25 00:29:34 +00:00
SWC Bot
c5053d1574 chore: Bump crates 2024-01-24 12:01:48 +00:00
Donny/강동윤
fab27dabed
fix(es/loader): Don't use browser versions for jsc.paths (#8548)
**Related issue:**

 - https://github.com/vercel/next.js/issues/56144
2024-01-24 12:00:05 +00:00
SWC Bot
098cdd36e2 chore: Publish 1.3.106-nightly-20240124.1 2024-01-24 11:34:52 +00:00
SWC Bot
994d7adcd0 chore: Bump crates 2024-01-24 09:19:54 +00:00
Donny/강동윤
ae786692a0
fix(es/codegen): Set sourceRoot of sourcemaps (#6086)
**Related issue:**

 - Closes #2362
2024-01-24 09:18:09 +00:00
SWC Bot
6429c8d56a chore: Bump crates 2024-01-24 05:07:50 +00:00
Donny/강동윤
00619b1708
feat(css/parser): Implement error reporting for @value of CSS Modules (#8547) 2024-01-24 05:06:20 +00:00
SWC Bot
c3fd9d081e chore: Bump crates 2024-01-24 02:04:25 +00:00
Donny/강동윤
043ee85d08
fix(common): Fix source map generation with inputSourceMap (#8546)
**Description:**

- This PR fixes the source map generation when `inputSourceMap` is specified.
- This PR fixes `minify()` not accepting parsed source map in the option.


**Related issue:**

 - Closes #8372.
2024-01-24 02:02:45 +00:00
SWC Bot
bfdfd3a26b chore: Bump crates 2024-01-24 01:13:57 +00:00
Donny/강동윤
aa70131c55
fix(es/minifier): Fix a bug related to inliner and the variable scoping (#8542)
**Related issue:**

 - Closes #8246
2024-01-24 01:12:02 +00:00
SWC Bot
2d15177ca9 chore: Bump crates 2024-01-23 08:38:01 +00:00