Skip to content

Commit

Permalink
rename package and set standard structure
Browse files Browse the repository at this point in the history
  • Loading branch information
EnzoBatistaU committed Apr 2, 2024
1 parent d495b62 commit 1178af2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dynamods/librarieJS",
"name": "@dynamods/librariejs",
"version": "1.0.0",
"description": "Project that contains all hosted contents of Dynamo Windows client",
"main": "index.js",
Expand All @@ -12,8 +12,8 @@
"copy": "cp package.json dist/ && cp README.md dist/ && cp -r license_output dist/",
"production": "npm run bundle && npm run copy",
"serve": "npm run dev & node ./index.js",
"lic_direct": "npx @adsk/adsk-npm-license-puller --path . --app-name 'librarieJS' --verbose --about-box ./license_output/about-box_direct.html --about-box-type desktop --year 2022 --paos ./license_output/paos_direct.csv",
"lic_transitive": "npx @adsk/adsk-npm-license-puller --path . --app-name 'librarieJS' --verbose --about-box ./license_output/about-box_transitive.html --about-box-type desktop --transitive --year 2022 --paos ./license_output/paos_transitive.csv",
"lic_direct": "npx @adsk/adsk-npm-license-puller --path . --app-name 'librariejs' --verbose --about-box ./license_output/about-box_direct.html --about-box-type desktop --year 2022 --paos ./license_output/paos_direct.csv",
"lic_transitive": "npx @adsk/adsk-npm-license-puller --path . --app-name 'librariejs' --verbose --about-box ./license_output/about-box_transitive.html --about-box-type desktop --transitive --year 2022 --paos ./license_output/paos_transitive.csv",
"generate_license": "npm run lic_direct && npm run lic_transitive"
},
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ module.exports = {
target: "web",
output: {
filename: productionBuild ? "librarie.min.js" : "librarie.js",
path: path.join(__dirname, '/dist'),
publicPath: "./dist/",
path: path.join(__dirname, '/dist/build'),
publicPath: "./dist/build",
libraryTarget: "umd",
library: "LibraryEntryPoint",
},
Expand Down

0 comments on commit 1178af2

Please sign in to comment.