Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: dot-env plugin #4113

Open
wants to merge 43 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
93a45c8
test
info-arnav Mar 13, 2024
80d7233
Merge branch 'master' of https://github.com/info-arnav/webpack-cli
info-arnav Mar 13, 2024
4355ebc
add: add boilerplate script
info-arnav Mar 13, 2024
5704492
add: react boilerplate
info-arnav Mar 13, 2024
1591b8d
add: react boilerplate
info-arnav Mar 13, 2024
78c59c8
feat: dot env plugin
info-arnav Mar 14, 2024
e3c4bb4
dot-env
info-arnav Mar 14, 2024
14062c5
feat: dot-env support
info-arnav Mar 20, 2024
41385a0
feat: dot-env plugin
info-arnav Mar 23, 2024
7c1811f
feat: dot-env plugin
info-arnav Mar 23, 2024
06bc78d
Merge branch 'master' into dot-env
info-arnav Mar 25, 2024
ef9e163
fix: changed the directory and removed silent
info-arnav Mar 25, 2024
132d757
Merge branch 'dot-env' of https://github.com/info-arnav/webpack-cli i…
info-arnav Mar 25, 2024
ad0f842
fix: yarn.lock conflict
info-arnav Mar 25, 2024
8ee2144
feat: multiple prefix
info-arnav Mar 25, 2024
9fd7dca
feat: multiple prefix
info-arnav Mar 25, 2024
98499d3
feat: added comment for future aspect
info-arnav Mar 25, 2024
f4f53b8
fix: removed loadconfig from webpack-cli
info-arnav Mar 26, 2024
e471b42
feat: added the --dot-env arg
info-arnav Mar 27, 2024
1bb6371
fix :changed the dotenv-webpack-plugin directory
info-arnav Mar 27, 2024
e60dffb
fix: added test -> positive
info-arnav Mar 27, 2024
75ec38f
fix: added webpack logger
info-arnav Mar 27, 2024
4c53402
fix: added tests
info-arnav Mar 27, 2024
9d2cae1
fix: used Map for cache
info-arnav Mar 28, 2024
7ed4652
fix: private changed with # and cache removed
info-arnav Mar 28, 2024
efeff89
fix: cache implimented properly
info-arnav Mar 28, 2024
7491651
fix: type target string
info-arnav Mar 28, 2024
6269163
fix: reolved issues
info-arnav Mar 29, 2024
67d08db
Merge branch 'master' into dot-env
info-arnav Mar 29, 2024
5ae5ffa
fix: reolved all the issues, tests pending
info-arnav Apr 3, 2024
143344b
fix: renamed config to options
info-arnav Apr 3, 2024
f214c62
feat: added safe method
info-arnav Apr 3, 2024
da567e9
fix: replaced for-each with for..of
info-arnav Apr 4, 2024
903104b
fix: resolved all issues except hook
info-arnav Apr 6, 2024
61fc823
fix: removed async, and made small changes:
info-arnav Apr 6, 2024
b3049cf
fix: compilation is defined
info-arnav Apr 6, 2024
f45788a
fix: corrected types
info-arnav Apr 6, 2024
7c4e8c8
test: added tests for safe, expand and empty modes
info-arnav Apr 12, 2024
5a1e693
fix: resolved small changes
info-arnav Apr 12, 2024
969181e
Merge branch 'master' into dot-env
info-arnav Apr 12, 2024
a51a1fc
fix: removed compilation hook
info-arnav Apr 13, 2024
397d73a
Merge branch 'dot-env' of https://github.com/info-arnav/webpack-cli i…
info-arnav Apr 13, 2024
78eac39
adding a compilation hook inside the initialize hook
info-arnav Apr 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -67,3 +67,6 @@ test/**/dist
test/**/**/dist
test/**/**/**/dist
test/**/stats.json

# private readme
private_readme.md
info-arnav marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "webpack-cli-monorepo",
"description": "CLI for webpack & friends",
"license": "MIT",
"private": true,
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
Expand Down