Skip to content

Commit 43a354e

Browse files
committed
Fix name of mix.exs module
- mix.exs module was still named Html5ever.Mixfile and when used in project w/ html5ever_elixir, miscompiled on first compile but worked second compile - Cleaned up config
1 parent 424402f commit 43a354e

File tree

2 files changed

+1
-30
lines changed

2 files changed

+1
-30
lines changed

config/config.exs

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1 @@
1-
# This file is responsible for configuring your application
2-
# and its dependencies with the aid of the Mix.Config module.
31
use Mix.Config
4-
5-
# This configuration is loaded before any dependency and is restricted
6-
# to this project. If another project depends on this project, this
7-
# file won't be loaded nor affect the parent project. For this reason,
8-
# if you want to provide default values for your application for
9-
# 3rd-party users, it should be done in your "mix.exs" file.
10-
11-
# You can configure for your application as:
12-
#
13-
# config :ex_html5ever, key: :value
14-
#
15-
# And access this configuration in your application as:
16-
#
17-
# Application.get_env(:ex_html5ever, :key)
18-
#
19-
# Or configure a 3rd-party app:
20-
#
21-
# config :logger, level: :info
22-
#
23-
24-
# It is also possible to import configuration files, relative to this
25-
# directory. For example, you can emulate configuration per environment
26-
# by uncommenting the line below and defining dev.exs, test.exs and such.
27-
# Configuration from the imported file will override the ones defined
28-
# here (which is why it is important to import them last).
29-
#
30-
# import_config "#{Mix.env}.exs"

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Html5ever.Mixfile do
1+
defmodule MeeseeksHtml5ever.Mixfile do
22
use Mix.Project
33

44
@version "0.4.2"

0 commit comments

Comments
 (0)